KosmoKrator

productivity

Microsoft Entra ID CLI for AI Agents

Use the Microsoft Entra ID CLI from KosmoKrator to call Microsoft Entra ID tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

Microsoft Entra ID CLI Setup

Microsoft Entra ID can be configured headlessly with `kosmokrator integrations:configure microsoft-entra-id`.

Install, configure, and verify
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure microsoft-entra-id --enable --read allow --write ask --json
kosmokrator integrations:doctor microsoft-entra-id --json
kosmokrator integrations:status --json

Credentials

Authentication type: Manual OAuth token oauth2_manual_token. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

No credentials are required.

Command Patterns

The generic command is stable across every integration. The provider shortcut is shorter for humans.

Generic CLI call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_list_application '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Provider shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_list_application '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

Discovery

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

Discovery commands
kosmo integrations:docs microsoft-entra-id --json
kosmo integrations:docs microsoft-entra-id.microsoft_entra_id_applications_application_list_application --json
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_list_application --json
kosmo integrations:search "Microsoft Entra ID" --json
kosmo integrations:list --json

Automation Contexts

The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.

CLI Functions

Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.

microsoft-entra-id.microsoft_entra_id_applications_application_list_application

List applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_list_application '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_list_application '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_create_application

Create application\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_create_application '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_create_application '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_delete_application_by_app_id

Delete application\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications(appId='{appId}').

Write write
Parameters
app_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_delete_application_by_app_id '{"app_id":"example_app_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_delete_application_by_app_id '{"app_id":"example_app_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_get_application_by_app_id

Get application\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications(appId='{appId}').

Read read
Parameters
app_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_get_application_by_app_id '{"app_id":"example_app_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_get_application_by_app_id '{"app_id":"example_app_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_update_application_by_app_id

Upsert application\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /applications(appId='{appId}').

Write write
Parameters
app_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_update_application_by_app_id '{"app_id":"example_app_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_update_application_by_app_id '{"app_id":"example_app_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_delete_application_by_unique_name

Delete application\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications(uniqueName='{uniqueName}').

Write write
Parameters
unique_name, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_delete_application_by_unique_name '{"unique_name":"example_unique_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_delete_application_by_unique_name '{"unique_name":"example_unique_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_get_application_by_unique_name

Get application\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications(uniqueName='{uniqueName}').

Read read
Parameters
unique_name, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_get_application_by_unique_name '{"unique_name":"example_unique_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_get_application_by_unique_name '{"unique_name":"example_unique_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_update_application_by_unique_name

Upsert application\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /applications(uniqueName='{uniqueName}').

Write write
Parameters
unique_name, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_update_application_by_unique_name '{"unique_name":"example_unique_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_update_application_by_unique_name '{"unique_name":"example_unique_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_get_count_8398

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_get_count_8398 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_get_count_8398 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_applications_delta

Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/delta().

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_applications_get_available_extension_properties

Invoke action getAvailableExtensionProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/getAvailableExtensionProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_applications_get_by_ids

Invoke action getByIds\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/getByIds.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_applications_validate_properties

Invoke action validateProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/validateProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_delete_application

Delete application\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_delete_application '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_delete_application '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_get_application

Get application\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_get_application '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_get_application '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_update_application

Upsert application\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /applications/{application-id}.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_update_application '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_update_application '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_add_key

Invoke action addKey\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/addKey.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_add_key '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_add_key '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_add_password

Invoke action addPassword\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/addPassword.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_add_password '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_add_password '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_list_app_management_policies

Get appManagementPolicies from applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/appManagementPolicies.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_list_app_management_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_list_app_management_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_app_management_policies_get_count_3aad

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/appManagementPolicies/$count.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_app_management_policies_get_count_3aad '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_app_management_policies_get_count_3aad '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_delete_ref_app_management_policies

Remove appliesTo\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/appManagementPolicies/$ref.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_delete_ref_app_management_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_delete_ref_app_management_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_list_ref_app_management_policies

Get ref of appManagementPolicies from applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/appManagementPolicies/$ref.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_list_ref_app_management_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_list_ref_app_management_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_create_ref_app_management_policies

Assign appliesTo\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/appManagementPolicies/$ref.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_create_ref_app_management_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_create_ref_app_management_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_app_management_policies_delete_ref_app_management_policy

Remove appliesTo\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/appManagementPolicies/{appManagementPolicy-id}/$ref.

Write write
Parameters
application_id, app_management_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_app_management_policies_delete_ref_app_management_policy '{"application_id":"example_application_id","app_management_policy_id":"example_app_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_app_management_policies_delete_ref_app_management_policy '{"application_id":"example_application_id","app_management_policy_id":"example_app_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_check_member_groups

Invoke action checkMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/checkMemberGroups.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_check_member_groups '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_check_member_groups '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_check_member_objects

Invoke action checkMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/checkMemberObjects.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_check_member_objects '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_check_member_objects '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_get_created_on_behalf_of

Get createdOnBehalfOf from applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/createdOnBehalfOf.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_get_created_on_behalf_of '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_get_created_on_behalf_of '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_list_extension_properties

List extensionProperties (directory extensions)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/extensionProperties.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_list_extension_properties '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_list_extension_properties '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_create_extension_properties

Create extensionProperty (directory extension)\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/extensionProperties.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_create_extension_properties '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_create_extension_properties '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_extension_properties_get_count_3535

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/extensionProperties/$count.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_extension_properties_get_count_3535 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_extension_properties_get_count_3535 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_delete_extension_properties

Delete extensionProperty (directory extension)\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/extensionProperties/{extensionProperty-id}.

Write write
Parameters
application_id, extension_property_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_delete_extension_properties '{"application_id":"example_application_id","extension_property_id":"example_extension_property_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_delete_extension_properties '{"application_id":"example_application_id","extension_property_id":"example_extension_property_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_get_extension_properties

Get extensionProperty (directory extension)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/extensionProperties/{extensionProperty-id}.

Read read
Parameters
application_id, extension_property_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_get_extension_properties '{"application_id":"example_application_id","extension_property_id":"example_extension_property_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_get_extension_properties '{"application_id":"example_application_id","extension_property_id":"example_extension_property_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_update_extension_properties

Update the navigation property extensionProperties in applications\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /applications/{application-id}/extensionProperties/{extensionProperty-id}.

Write write
Parameters
application_id, extension_property_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_update_extension_properties '{"application_id":"example_application_id","extension_property_id":"example_extension_property_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_update_extension_properties '{"application_id":"example_application_id","extension_property_id":"example_extension_property_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_list_federated_identity_credentials

List federatedIdentityCredential objects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/federatedIdentityCredentials.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_list_federated_identity_credentials '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_list_federated_identity_credentials '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_create_federated_identity_credentials

Create federatedIdentityCredential\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/federatedIdentityCredentials.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_create_federated_identity_credentials '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_create_federated_identity_credentials '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_federated_identity_credentials_delete_by_name

Delete federatedIdentityCredential\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/federatedIdentityCredentials(name='{name}').

Write write
Parameters
application_id, name, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_federated_identity_credentials_delete_by_name '{"application_id":"example_application_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_federated_identity_credentials_delete_by_name '{"application_id":"example_application_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_federated_identity_credentials_get_by_name

Get federatedIdentityCredential\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/federatedIdentityCredentials(name='{name}').

Read read
Parameters
application_id, name, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_federated_identity_credentials_get_by_name '{"application_id":"example_application_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_federated_identity_credentials_get_by_name '{"application_id":"example_application_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_federated_identity_credentials_update_by_name

Upsert federatedIdentityCredential\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /applications/{application-id}/federatedIdentityCredentials(name='{name}').

Write write
Parameters
application_id, name, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_federated_identity_credentials_update_by_name '{"application_id":"example_application_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_federated_identity_credentials_update_by_name '{"application_id":"example_application_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_federated_identity_credentials_get_count_d653

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/federatedIdentityCredentials/$count.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_federated_identity_credentials_get_count_d653 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_federated_identity_credentials_get_count_d653 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_delete_federated_identity_credentials

Delete federatedIdentityCredential\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}.

Write write
Parameters
application_id, federated_identity_credential_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_delete_federated_identity_credentials '{"application_id":"example_application_id","federated_identity_credential_id":"example_federated_identity_credential_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_delete_federated_identity_credentials '{"application_id":"example_application_id","federated_identity_credential_id":"example_federated_identity_credential_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_get_federated_identity_credentials

Get federatedIdentityCredential\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}.

Read read
Parameters
application_id, federated_identity_credential_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_get_federated_identity_credentials '{"application_id":"example_application_id","federated_identity_credential_id":"example_federated_identity_credential_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_get_federated_identity_credentials '{"application_id":"example_application_id","federated_identity_credential_id":"example_federated_identity_credential_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_update_federated_identity_credentials

Upsert federatedIdentityCredential\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}.

Write write
Parameters
application_id, federated_identity_credential_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_update_federated_identity_credentials '{"application_id":"example_application_id","federated_identity_credential_id":"example_federated_identity_credential_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_update_federated_identity_credentials '{"application_id":"example_application_id","federated_identity_credential_id":"example_federated_identity_credential_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_get_member_groups

Invoke action getMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/getMemberGroups.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_get_member_groups '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_get_member_groups '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_get_member_objects

Invoke action getMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/getMemberObjects.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_get_member_objects '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_get_member_objects '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_list_home_realm_discovery_policies

Get homeRealmDiscoveryPolicies from applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/homeRealmDiscoveryPolicies.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_list_home_realm_discovery_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_list_home_realm_discovery_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_home_realm_discovery_policies_get_count_1662

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/homeRealmDiscoveryPolicies/$count.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_home_realm_discovery_policies_get_count_1662 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_home_realm_discovery_policies_get_count_1662 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_get_home_realm_discovery_policies

Get homeRealmDiscoveryPolicies from applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}.

Read read
Parameters
application_id, home_realm_discovery_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_get_home_realm_discovery_policies '{"application_id":"example_application_id","home_realm_discovery_policy_id":"example_home_realm_discovery_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_get_home_realm_discovery_policies '{"application_id":"example_application_id","home_realm_discovery_policy_id":"example_home_realm_discovery_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_list_owners

List owners of an application\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/owners.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_list_owners '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_list_owners '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_2b88

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/owners/$count.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_2b88 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_owners_get_count_2b88 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_delete_ref_owners

Remove application owner\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/owners/$ref.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_delete_ref_owners '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_delete_ref_owners '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_list_ref_owners

List owners of an application\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/owners/$ref.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_list_ref_owners '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_list_ref_owners '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_create_ref_owners

Add owner\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/owners/$ref.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_create_ref_owners '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_create_ref_owners '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_list_owners_as_app_role_assignment

Get the items of type microsoft.graph.appRoleAssignment in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/owners/graph.appRoleAssignment.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_list_owners_as_app_role_assignment '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_list_owners_as_app_role_assignment '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_as_app_role_assignment_eb25

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/owners/graph.appRoleAssignment/$count.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_as_app_role_assignment_eb25 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_owners_get_count_as_app_role_assignment_eb25 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_list_owners_as_endpoint

Get the items of type microsoft.graph.endpoint in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/owners/graph.endpoint.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_list_owners_as_endpoint '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_list_owners_as_endpoint '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_as_endpoint_0426

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/owners/graph.endpoint/$count.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_as_endpoint_0426 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_owners_get_count_as_endpoint_0426 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_list_owners_as_service_principal

Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/owners/graph.servicePrincipal.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_list_owners_as_service_principal '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_list_owners_as_service_principal '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_as_service_principal_0959

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/owners/graph.servicePrincipal/$count.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_as_service_principal_0959 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_owners_get_count_as_service_principal_0959 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_list_owners_as_user

Get the items of type microsoft.graph.user in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/owners/graph.user.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_list_owners_as_user '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_list_owners_as_user '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_as_user_c674

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/owners/graph.user/$count.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_as_user_c674 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_owners_get_count_as_user_c674 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_owners_delete_ref_directory_object

Remove application owner\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/owners/{directoryObject-id}/$ref.

Write write
Parameters
application_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_owners_delete_ref_directory_object '{"application_id":"example_application_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_owners_delete_ref_directory_object '{"application_id":"example_application_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_get_owners_as_app_role_assignment

Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/owners/{directoryObject-id}/graph.appRoleAssignment.

Read read
Parameters
application_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_get_owners_as_app_role_assignment '{"application_id":"example_application_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_get_owners_as_app_role_assignment '{"application_id":"example_application_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_get_owners_as_endpoint

Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/owners/{directoryObject-id}/graph.endpoint.

Read read
Parameters
application_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_get_owners_as_endpoint '{"application_id":"example_application_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_get_owners_as_endpoint '{"application_id":"example_application_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_get_owners_as_service_principal

Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/owners/{directoryObject-id}/graph.servicePrincipal.

Read read
Parameters
application_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_get_owners_as_service_principal '{"application_id":"example_application_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_get_owners_as_service_principal '{"application_id":"example_application_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_get_owners_as_user

Get the item of type microsoft.graph.directoryObject as microsoft.graph.user\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/owners/{directoryObject-id}/graph.user.

Read read
Parameters
application_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_get_owners_as_user '{"application_id":"example_application_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_get_owners_as_user '{"application_id":"example_application_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_remove_key

Invoke action removeKey\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/removeKey.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_remove_key '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_remove_key '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_remove_password

Invoke action removePassword\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/removePassword.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_remove_password '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_remove_password '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_restore

Invoke action restore\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/restore.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_restore '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_restore '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_set_verified_publisher

Invoke action setVerifiedPublisher\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/setVerifiedPublisher.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_set_verified_publisher '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_set_verified_publisher '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_delete_synchronization

Delete navigation property synchronization for applications\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/synchronization.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_delete_synchronization '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_delete_synchronization '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_get_synchronization

Get synchronization from applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_get_synchronization '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_get_synchronization '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_set_synchronization

Update the navigation property synchronization in applications\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /applications/{application-id}/synchronization.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_set_synchronization '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_set_synchronization '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_acquire_access_token

Invoke action acquireAccessToken\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/synchronization/acquireAccessToken.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_acquire_access_token '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_synchronization_acquire_access_token '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_list_jobs

Get jobs from applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/jobs.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_list_jobs '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_list_jobs '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_create_jobs

Create new navigation property to jobs for applications\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/synchronization/jobs.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_create_jobs '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_create_jobs '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_get_count_30ed

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/jobs/$count.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_get_count_30ed '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_jobs_get_count_30ed '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_validate_credentials

Invoke action validateCredentials\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/synchronization/jobs/validateCredentials.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_validate_credentials '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_synchronization_jobs_validate_credentials '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_delete_jobs

Delete navigation property jobs for applications\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}.

Write write
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_delete_jobs '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_delete_jobs '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_get_jobs

Get jobs from applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}.

Read read
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_get_jobs '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_get_jobs '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_update_jobs

Update the navigation property jobs in applications\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}.

Write write
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_update_jobs '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_update_jobs '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_delete_bulk_upload

Delete navigation property bulkUpload for applications\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload.

Write write
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_delete_bulk_upload '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_jobs_delete_bulk_upload '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_get_bulk_upload

Get bulkUpload from applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload.

Read read
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_get_bulk_upload '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_jobs_get_bulk_upload '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_update_bulk_upload

Update the navigation property bulkUpload in applications\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload.

Write write
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_update_bulk_upload '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_jobs_update_bulk_upload '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_delete_bulk_upload_content

Delete media content for the navigation property bulkUpload in applications\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value.

Write write
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_delete_bulk_upload_content '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_jobs_delete_bulk_upload_content '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_get_bulk_upload_content

Get media content for the navigation property bulkUpload from applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value.

Read read
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_get_bulk_upload_content '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_jobs_get_bulk_upload_content '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_update_bulk_upload_content

Update media content for the navigation property bulkUpload in applications\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value.

Write write
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_update_bulk_upload_content '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_jobs_update_bulk_upload_content '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_pause

Invoke action pause\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/pause.

Read read
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_pause '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_pause '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_provision_on_demand

Invoke action provisionOnDemand\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/provisionOnDemand.

Read read
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_provision_on_demand '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_provision_on_demand '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_restart

Invoke action restart\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/restart.

Read read
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_restart '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_restart '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_delete_schema

Delete navigation property schema for applications\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema.

Write write
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_delete_schema '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_jobs_delete_schema '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_get_schema

Get schema from applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema.

Read read
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_get_schema '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_jobs_get_schema '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_update_schema

Update the navigation property schema in applications\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema.

Write write
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_update_schema '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_jobs_update_schema '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_list_directories

Get directories from applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories.

Read read
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_list_directories '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_jobs_schema_list_directories '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_create_directories

Create new navigation property to directories for applications\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories.

Write write
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_create_directories '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_jobs_schema_create_directories '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_directories_get_count_03bf

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/$count.

Read read
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_directories_get_count_03bf '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_jobs_schema_directories_get_count_03bf '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_delete_directories

Delete navigation property directories for applications\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}.

Write write
Parameters
application_id, synchronization_job_id, directory_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_delete_directories '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_jobs_schema_delete_directories '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_get_directories

Get directories from applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}.

Read read
Parameters
application_id, synchronization_job_id, directory_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_get_directories '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_jobs_schema_get_directories '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_update_directories

Update the navigation property directories in applications\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}.

Write write
Parameters
application_id, synchronization_job_id, directory_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_update_directories '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_jobs_schema_update_directories '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_directories_directory_definition_discover

Invoke action discover\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover.

Read read
Parameters
application_id, synchronization_job_id, directory_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_directories_directory_definition_discover '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_directories_directory_definition_discover '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_filter_operators

Invoke function filterOperators\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/filterOperators().

Read read
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_filter_operators '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_filter_operators '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_functions

Invoke function functions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/functions().

Read read
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_functions '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_functions '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_parse_expression

Invoke action parseExpression\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/parseExpression.

Read read
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_parse_expression '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_parse_expression '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_start

Invoke action start\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/start.

Read read
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_start '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_start '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_validate_credentials

Invoke action validateCredentials\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/validateCredentials.

Read read
Parameters
application_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_validate_credentials '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_validate_credentials '{"application_id":"example_application_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_set_secrets

Update property secrets value.\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /applications/{application-id}/synchronization/secrets.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_set_secrets '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_set_secrets '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_secrets_get_count_26f1

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/secrets/$count.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_secrets_get_count_26f1 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_secrets_get_count_26f1 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_list_templates

Get templates from applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/templates.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_list_templates '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_list_templates '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_create_templates

Create new navigation property to templates for applications\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/synchronization/templates.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_create_templates '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_create_templates '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_get_count_738a

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/templates/$count.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_get_count_738a '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_templates_get_count_738a '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_delete_templates

Delete navigation property templates for applications\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}.

Write write
Parameters
application_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_delete_templates '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_delete_templates '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_get_templates

Get templates from applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}.

Read read
Parameters
application_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_get_templates '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_get_templates '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_update_templates

Update synchronizationTemplate\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}.

Write write
Parameters
application_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_update_templates '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_update_templates '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_delete_schema

Delete navigation property schema for applications\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema.

Write write
Parameters
application_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_delete_schema '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_templates_delete_schema '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_get_schema

Get schema from applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema.

Read read
Parameters
application_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_get_schema '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_templates_get_schema '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_update_schema

Update the navigation property schema in applications\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema.

Write write
Parameters
application_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_update_schema '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_templates_update_schema '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_list_directories

Get directories from applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories.

Read read
Parameters
application_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_list_directories '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_templates_schema_list_directories '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_create_directories

Create new navigation property to directories for applications\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories.

Write write
Parameters
application_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_create_directories '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_templates_schema_create_directories '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_directories_get_count_27bc

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/$count.

Read read
Parameters
application_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_directories_get_count_27bc '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_templates_schema_directories_get_count_27bc '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_delete_directories

Delete navigation property directories for applications\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}.

Write write
Parameters
application_id, synchronization_template_id, directory_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_delete_directories '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_templates_schema_delete_directories '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_get_directories

Get directories from applications\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}.

Read read
Parameters
application_id, synchronization_template_id, directory_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_get_directories '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_templates_schema_get_directories '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_update_directories

Update the navigation property directories in applications\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}.

Write write
Parameters
application_id, synchronization_template_id, directory_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_update_directories '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_synchronization_templates_schema_update_directories '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_directories_directory_definition_discover

Invoke action discover\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover.

Read read
Parameters
application_id, synchronization_template_id, directory_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_directories_directory_definition_discover '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_directories_directory_definition_discover '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_filter_operators

Invoke function filterOperators\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/filterOperators().

Read read
Parameters
application_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_filter_operators '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_filter_operators '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_functions

Invoke function functions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/functions().

Read read
Parameters
application_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_functions '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_functions '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_parse_expression

Invoke action parseExpression\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/parseExpression.

Read read
Parameters
application_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_parse_expression '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_parse_expression '{"application_id":"example_application_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_list_token_issuance_policies

List assigned tokenIssuancePolicies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/tokenIssuancePolicies.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_list_token_issuance_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_list_token_issuance_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_token_issuance_policies_get_count_4be5

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/tokenIssuancePolicies/$count.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_token_issuance_policies_get_count_4be5 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_token_issuance_policies_get_count_4be5 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_delete_ref_token_issuance_policies

Remove tokenIssuancePolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/tokenIssuancePolicies/$ref.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_delete_ref_token_issuance_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_delete_ref_token_issuance_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_list_ref_token_issuance_policies

List assigned tokenIssuancePolicies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/tokenIssuancePolicies/$ref.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_list_ref_token_issuance_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_list_ref_token_issuance_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_create_ref_token_issuance_policies

Assign tokenIssuancePolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/tokenIssuancePolicies/$ref.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_create_ref_token_issuance_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_create_ref_token_issuance_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_token_issuance_policies_delete_ref_token_issuance_policy

Remove tokenIssuancePolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/tokenIssuancePolicies/{tokenIssuancePolicy-id}/$ref.

Write write
Parameters
application_id, token_issuance_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_token_issuance_policies_delete_ref_token_issuance_policy '{"application_id":"example_application_id","token_issuance_policy_id":"example_token_issuance_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_token_issuance_policies_delete_ref_token_issuance_policy '{"application_id":"example_application_id","token_issuance_policy_id":"example_token_issuance_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_list_token_lifetime_policies

List assigned tokenLifetimePolicies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/tokenLifetimePolicies.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_list_token_lifetime_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_list_token_lifetime_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_token_lifetime_policies_get_count_5de4

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/tokenLifetimePolicies/$count.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_token_lifetime_policies_get_count_5de4 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_token_lifetime_policies_get_count_5de4 '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_delete_ref_token_lifetime_policies

Remove tokenLifetimePolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/tokenLifetimePolicies/$ref.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_delete_ref_token_lifetime_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_delete_ref_token_lifetime_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_list_ref_token_lifetime_policies

List assigned tokenLifetimePolicies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /applications/{application-id}/tokenLifetimePolicies/$ref.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_list_ref_token_lifetime_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_list_ref_token_lifetime_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_create_ref_token_lifetime_policies

Assign tokenLifetimePolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/tokenLifetimePolicies/$ref.

Write write
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_create_ref_token_lifetime_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_create_ref_token_lifetime_policies '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_applications_token_lifetime_policies_delete_ref_token_lifetime_policy

Remove tokenLifetimePolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /applications/{application-id}/tokenLifetimePolicies/{tokenLifetimePolicy-id}/$ref.

Write write
Parameters
application_id, token_lifetime_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_token_lifetime_policies_delete_ref_token_lifetime_policy '{"application_id":"example_application_id","token_lifetime_policy_id":"example_token_lifetime_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_token_lifetime_policies_delete_ref_token_lifetime_policy '{"application_id":"example_application_id","token_lifetime_policy_id":"example_token_lifetime_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_applications_application_unset_verified_publisher

Invoke action unsetVerifiedPublisher\n\nOfficial Microsoft Graph v1.0 endpoint: POST /applications/{application-id}/unsetVerifiedPublisher.

Read read
Parameters
application_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_applications_application_unset_verified_publisher '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_applications_application_unset_verified_publisher '{"application_id":"example_application_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_contracts_contract_list_contract

List contracts\n\nOfficial Microsoft Graph v1.0 endpoint: GET /contracts.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_contracts_contract_list_contract '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_contracts_contract_list_contract '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_contracts_contract_create_contract

Add new entity to contracts\n\nOfficial Microsoft Graph v1.0 endpoint: POST /contracts.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_contracts_contract_create_contract '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_contracts_contract_create_contract '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_contracts_get_count_8092

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /contracts/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_contracts_get_count_8092 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_contracts_get_count_8092 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_contracts_delta

Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /contracts/delta().

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_contracts_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_contracts_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_contracts_get_available_extension_properties

Invoke action getAvailableExtensionProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /contracts/getAvailableExtensionProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_contracts_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_contracts_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_contracts_get_by_ids

Invoke action getByIds\n\nOfficial Microsoft Graph v1.0 endpoint: POST /contracts/getByIds.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_contracts_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_contracts_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_contracts_validate_properties

Invoke action validateProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /contracts/validateProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_contracts_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_contracts_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_contracts_contract_delete_contract

Delete entity from contracts\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /contracts/{contract-id}.

Write write
Parameters
contract_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_contracts_contract_delete_contract '{"contract_id":"example_contract_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_contracts_contract_delete_contract '{"contract_id":"example_contract_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_contracts_contract_get_contract

Get Contract\n\nOfficial Microsoft Graph v1.0 endpoint: GET /contracts/{contract-id}.

Read read
Parameters
contract_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_contracts_contract_get_contract '{"contract_id":"example_contract_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_contracts_contract_get_contract '{"contract_id":"example_contract_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_contracts_contract_update_contract

Update entity in contracts\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /contracts/{contract-id}.

Write write
Parameters
contract_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_contracts_contract_update_contract '{"contract_id":"example_contract_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_contracts_contract_update_contract '{"contract_id":"example_contract_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_contracts_contract_check_member_groups

Invoke action checkMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /contracts/{contract-id}/checkMemberGroups.

Read read
Parameters
contract_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_contracts_contract_check_member_groups '{"contract_id":"example_contract_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_contracts_contract_check_member_groups '{"contract_id":"example_contract_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_contracts_contract_check_member_objects

Invoke action checkMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /contracts/{contract-id}/checkMemberObjects.

Read read
Parameters
contract_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_contracts_contract_check_member_objects '{"contract_id":"example_contract_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_contracts_contract_check_member_objects '{"contract_id":"example_contract_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_contracts_contract_get_member_groups

Invoke action getMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /contracts/{contract-id}/getMemberGroups.

Read read
Parameters
contract_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_contracts_contract_get_member_groups '{"contract_id":"example_contract_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_contracts_contract_get_member_groups '{"contract_id":"example_contract_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_contracts_contract_get_member_objects

Invoke action getMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /contracts/{contract-id}/getMemberObjects.

Read read
Parameters
contract_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_contracts_contract_get_member_objects '{"contract_id":"example_contract_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_contracts_contract_get_member_objects '{"contract_id":"example_contract_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_contracts_contract_restore

Invoke action restore\n\nOfficial Microsoft Graph v1.0 endpoint: POST /contracts/{contract-id}/restore.

Read read
Parameters
contract_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_contracts_contract_restore '{"contract_id":"example_contract_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_contracts_contract_restore '{"contract_id":"example_contract_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_device_list_device

List devices\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_device_list_device '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_device_list_device '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_devices_device_create_device

Create device\n\nOfficial Microsoft Graph v1.0 endpoint: POST /devices.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_device_create_device '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_device_create_device '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_devices_device_delete_device_by_device_id

Delete device\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /devices(deviceId='{deviceId}').

Write write
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_device_delete_device_by_device_id '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_device_delete_device_by_device_id '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_device_get_device_by_device_id

Get device\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices(deviceId='{deviceId}').

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_device_get_device_by_device_id '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_device_get_device_by_device_id '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_device_update_device_by_device_id

Update device\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /devices(deviceId='{deviceId}').

Write write
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_device_update_device_by_device_id '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_device_update_device_by_device_id '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_get_count_3489

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_get_count_3489 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_get_count_3489 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_devices_delta

Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/delta().

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_devices_get_available_extension_properties

Invoke action getAvailableExtensionProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /devices/getAvailableExtensionProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_devices_get_by_ids

Invoke action getByIds\n\nOfficial Microsoft Graph v1.0 endpoint: POST /devices/getByIds.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_devices_validate_properties

Invoke action validateProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /devices/validateProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_devices_device_delete_device

Delete device\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /devices/{device-id}.

Write write
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_device_delete_device '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_device_delete_device '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_device_get_device

Get device\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_device_get_device '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_device_get_device '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_device_update_device

Update device\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /devices/{device-id}.

Write write
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_device_update_device '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_device_update_device '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_device_check_member_groups

Invoke action checkMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /devices/{device-id}/checkMemberGroups.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_device_check_member_groups '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_device_check_member_groups '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_device_check_member_objects

Invoke action checkMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /devices/{device-id}/checkMemberObjects.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_device_check_member_objects '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_device_check_member_objects '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_extensions

Get extensions from devices\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/extensions.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_extensions '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_extensions '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_create_extensions

Create new navigation property to extensions for devices\n\nOfficial Microsoft Graph v1.0 endpoint: POST /devices/{device-id}/extensions.

Write write
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_create_extensions '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_create_extensions '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_extensions_get_count_40b0

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/extensions/$count.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_extensions_get_count_40b0 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_extensions_get_count_40b0 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_delete_extensions

Delete navigation property extensions for devices\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /devices/{device-id}/extensions/{extension-id}.

Write write
Parameters
device_id, extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_delete_extensions '{"device_id":"example_device_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_delete_extensions '{"device_id":"example_device_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_devices_get_extensions

Get extensions from devices\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/extensions/{extension-id}.

Read read
Parameters
device_id, extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_get_extensions '{"device_id":"example_device_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_get_extensions '{"device_id":"example_device_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_devices_update_extensions

Update the navigation property extensions in devices\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /devices/{device-id}/extensions/{extension-id}.

Write write
Parameters
device_id, extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_update_extensions '{"device_id":"example_device_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_update_extensions '{"device_id":"example_device_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_devices_device_get_member_groups

Invoke action getMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /devices/{device-id}/getMemberGroups.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_device_get_member_groups '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_device_get_member_groups '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_device_get_member_objects

Invoke action getMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /devices/{device-id}/getMemberObjects.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_device_get_member_objects '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_device_get_member_objects '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_member_of

List device memberships\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/memberOf.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_member_of '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_member_of '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_member_of_get_count_bd14

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/memberOf/$count.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_member_of_get_count_bd14 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_member_of_get_count_bd14 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_member_of_as_administrative_unit

Get the items of type microsoft.graph.administrativeUnit in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/memberOf/graph.administrativeUnit.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_member_of_as_administrative_unit '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_member_of_as_administrative_unit '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_member_of_get_count_as_administrative_unit_dd3f

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/memberOf/graph.administrativeUnit/$count.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_member_of_get_count_as_administrative_unit_dd3f '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_member_of_get_count_as_administrative_unit_dd3f '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_member_of_as_group

List device memberships\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/memberOf/graph.group.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_member_of_as_group '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_member_of_as_group '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_member_of_get_count_as_group_3872

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/memberOf/graph.group/$count.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_member_of_get_count_as_group_3872 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_member_of_get_count_as_group_3872 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_get_member_of

Get memberOf from devices\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/memberOf/{directoryObject-id}.

Read read
Parameters
device_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_get_member_of '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_get_member_of '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_devices_get_member_of_as_administrative_unit

Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/memberOf/{directoryObject-id}/graph.administrativeUnit.

Read read
Parameters
device_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_get_member_of_as_administrative_unit '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_get_member_of_as_administrative_unit '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_devices_get_member_of_as_group

List device memberships\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/memberOf/{directoryObject-id}/graph.group.

Read read
Parameters
device_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_get_member_of_as_group '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_get_member_of_as_group '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners

List registeredOwners\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredOwners.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_registered_owners '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_d4e7

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredOwners/$count.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_d4e7 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_registered_owners_get_count_d4e7 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_delete_ref_registered_owners

Delete registeredOwner\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /devices/{device-id}/registeredOwners/$ref.

Write write
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_delete_ref_registered_owners '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_delete_ref_registered_owners '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_ref_registered_owners

List registeredOwners\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredOwners/$ref.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_ref_registered_owners '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_ref_registered_owners '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_create_ref_registered_owners

Create registeredOwner\n\nOfficial Microsoft Graph v1.0 endpoint: POST /devices/{device-id}/registeredOwners/$ref.

Write write
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_create_ref_registered_owners '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_create_ref_registered_owners '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners_as_app_role_assignment

Get the items of type microsoft.graph.appRoleAssignment in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredOwners/graph.appRoleAssignment.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners_as_app_role_assignment '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_registered_owners_as_app_role_assignment '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_as_app_role_assignment_6c67

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredOwners/graph.appRoleAssignment/$count.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_as_app_role_assignment_6c67 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_registered_owners_get_count_as_app_role_assignment_6c67 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners_as_endpoint

Get the items of type microsoft.graph.endpoint in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredOwners/graph.endpoint.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners_as_endpoint '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_registered_owners_as_endpoint '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_as_endpoint_81ea

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredOwners/graph.endpoint/$count.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_as_endpoint_81ea '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_registered_owners_get_count_as_endpoint_81ea '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners_as_service_principal

Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredOwners/graph.servicePrincipal.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners_as_service_principal '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_registered_owners_as_service_principal '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_as_service_principal_bf43

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredOwners/graph.servicePrincipal/$count.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_as_service_principal_bf43 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_registered_owners_get_count_as_service_principal_bf43 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners_as_user

Get the items of type microsoft.graph.user in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredOwners/graph.user.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners_as_user '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_registered_owners_as_user '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_as_user_8c65

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredOwners/graph.user/$count.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_as_user_8c65 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_registered_owners_get_count_as_user_8c65 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_registered_owners_delete_ref_directory_object

Delete registeredOwner\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /devices/{device-id}/registeredOwners/{directoryObject-id}/$ref.

Write write
Parameters
device_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_registered_owners_delete_ref_directory_object '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_registered_owners_delete_ref_directory_object '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_devices_get_registered_owners_as_app_role_assignment

Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredOwners/{directoryObject-id}/graph.appRoleAssignment.

Read read
Parameters
device_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_get_registered_owners_as_app_role_assignment '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_get_registered_owners_as_app_role_assignment '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_devices_get_registered_owners_as_endpoint

Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredOwners/{directoryObject-id}/graph.endpoint.

Read read
Parameters
device_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_get_registered_owners_as_endpoint '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_get_registered_owners_as_endpoint '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_devices_get_registered_owners_as_service_principal

Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredOwners/{directoryObject-id}/graph.servicePrincipal.

Read read
Parameters
device_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_get_registered_owners_as_service_principal '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_get_registered_owners_as_service_principal '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_devices_get_registered_owners_as_user

Get the item of type microsoft.graph.directoryObject as microsoft.graph.user\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredOwners/{directoryObject-id}/graph.user.

Read read
Parameters
device_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_get_registered_owners_as_user '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_get_registered_owners_as_user '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_registered_users

List registeredUsers\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredUsers.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_registered_users '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_registered_users '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_e934

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredUsers/$count.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_e934 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_registered_users_get_count_e934 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_delete_ref_registered_users

Delete registeredUser\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /devices/{device-id}/registeredUsers/$ref.

Write write
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_delete_ref_registered_users '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_delete_ref_registered_users '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_ref_registered_users

List registeredUsers\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredUsers/$ref.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_ref_registered_users '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_ref_registered_users '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_create_ref_registered_users

Create registeredUser\n\nOfficial Microsoft Graph v1.0 endpoint: POST /devices/{device-id}/registeredUsers/$ref.

Write write
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_create_ref_registered_users '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_create_ref_registered_users '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_registered_users_as_app_role_assignment

Get the items of type microsoft.graph.appRoleAssignment in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredUsers/graph.appRoleAssignment.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_registered_users_as_app_role_assignment '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_registered_users_as_app_role_assignment '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_as_app_role_assignment_7afb

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredUsers/graph.appRoleAssignment/$count.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_as_app_role_assignment_7afb '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_registered_users_get_count_as_app_role_assignment_7afb '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_registered_users_as_endpoint

Get the items of type microsoft.graph.endpoint in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredUsers/graph.endpoint.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_registered_users_as_endpoint '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_registered_users_as_endpoint '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_as_endpoint_38fb

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredUsers/graph.endpoint/$count.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_as_endpoint_38fb '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_registered_users_get_count_as_endpoint_38fb '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_registered_users_as_service_principal

Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredUsers/graph.servicePrincipal.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_registered_users_as_service_principal '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_registered_users_as_service_principal '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_as_service_principal_c21e

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredUsers/graph.servicePrincipal/$count.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_as_service_principal_c21e '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_registered_users_get_count_as_service_principal_c21e '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_registered_users_as_user

Get the items of type microsoft.graph.user in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredUsers/graph.user.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_registered_users_as_user '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_registered_users_as_user '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_as_user_ab49

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredUsers/graph.user/$count.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_as_user_ab49 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_registered_users_get_count_as_user_ab49 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_registered_users_delete_ref_directory_object

Delete registeredUser\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /devices/{device-id}/registeredUsers/{directoryObject-id}/$ref.

Write write
Parameters
device_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_registered_users_delete_ref_directory_object '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_registered_users_delete_ref_directory_object '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_devices_get_registered_users_as_app_role_assignment

Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredUsers/{directoryObject-id}/graph.appRoleAssignment.

Read read
Parameters
device_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_get_registered_users_as_app_role_assignment '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_get_registered_users_as_app_role_assignment '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_devices_get_registered_users_as_endpoint

Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredUsers/{directoryObject-id}/graph.endpoint.

Read read
Parameters
device_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_get_registered_users_as_endpoint '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_get_registered_users_as_endpoint '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_devices_get_registered_users_as_service_principal

Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredUsers/{directoryObject-id}/graph.servicePrincipal.

Read read
Parameters
device_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_get_registered_users_as_service_principal '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_get_registered_users_as_service_principal '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_devices_get_registered_users_as_user

Get the item of type microsoft.graph.directoryObject as microsoft.graph.user\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/registeredUsers/{directoryObject-id}/graph.user.

Read read
Parameters
device_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_get_registered_users_as_user '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_get_registered_users_as_user '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_devices_device_restore

Invoke action restore\n\nOfficial Microsoft Graph v1.0 endpoint: POST /devices/{device-id}/restore.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_device_restore '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_device_restore '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_transitive_member_of

List device transitive memberships\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/transitiveMemberOf.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_transitive_member_of '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_transitive_member_of '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_transitive_member_of_get_count_5cbd

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/transitiveMemberOf/$count.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_transitive_member_of_get_count_5cbd '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_transitive_member_of_get_count_5cbd '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_transitive_member_of_as_administrative_unit

Get the items of type microsoft.graph.administrativeUnit in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/transitiveMemberOf/graph.administrativeUnit.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_transitive_member_of_as_administrative_unit '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_transitive_member_of_as_administrative_unit '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_transitive_member_of_get_count_as_administrative_unit_24c9

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/transitiveMemberOf/graph.administrativeUnit/$count.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_transitive_member_of_get_count_as_administrative_unit_24c9 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_transitive_member_of_get_count_as_administrative_unit_24c9 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_list_transitive_member_of_as_group

List device transitive memberships\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/transitiveMemberOf/graph.group.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_list_transitive_member_of_as_group '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_list_transitive_member_of_as_group '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_transitive_member_of_get_count_as_group_bca9

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/transitiveMemberOf/graph.group/$count.

Read read
Parameters
device_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_transitive_member_of_get_count_as_group_bca9 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_transitive_member_of_get_count_as_group_bca9 '{"device_id":"example_device_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_devices_get_transitive_member_of

Get transitiveMemberOf from devices\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/transitiveMemberOf/{directoryObject-id}.

Read read
Parameters
device_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_get_transitive_member_of '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_get_transitive_member_of '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_devices_get_transitive_member_of_as_administrative_unit

Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/transitiveMemberOf/{directoryObject-id}/graph.administrativeUnit.

Read read
Parameters
device_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_get_transitive_member_of_as_administrative_unit '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_get_transitive_member_of_as_administrative_unit '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_devices_get_transitive_member_of_as_group

List device transitive memberships\n\nOfficial Microsoft Graph v1.0 endpoint: GET /devices/{device-id}/transitiveMemberOf/{directoryObject-id}/graph.group.

Read read
Parameters
device_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_devices_get_transitive_member_of_as_group '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_devices_get_transitive_member_of_as_group '{"device_id":"example_device_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_directory_get_directory

Get directory\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_directory_get_directory '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_directory_get_directory '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_directory_update_directory

Update directory\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directory.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_directory_update_directory '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_directory_update_directory '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_list_administrative_units

List administrativeUnits\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_list_administrative_units '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_list_administrative_units '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_create_administrative_units

Create administrativeUnit\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/administrativeUnits.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_create_administrative_units '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_create_administrative_units '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_count_a5a1

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_count_a5a1 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_get_count_a5a1 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_delta

Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/delta().

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_delete_administrative_units

Delete administrativeUnit\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directory/administrativeUnits/{administrativeUnit-id}.

Write write
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_delete_administrative_units '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_delete_administrative_units '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_get_administrative_units

Get administrativeUnit\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_get_administrative_units '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_get_administrative_units '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_update_administrative_units

Update administrativeUnit\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directory/administrativeUnits/{administrativeUnit-id}.

Write write
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_update_administrative_units '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_update_administrative_units '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_extensions

Get extensions from directory\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/extensions.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_extensions '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_list_extensions '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_create_extensions

Create new navigation property to extensions for directory\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/administrativeUnits/{administrativeUnit-id}/extensions.

Write write
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_create_extensions '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_create_extensions '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_extensions_get_count_48cb

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/extensions/$count.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_extensions_get_count_48cb '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_extensions_get_count_48cb '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_delete_extensions

Delete navigation property extensions for directory\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}.

Write write
Parameters
administrative_unit_id, extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_delete_extensions '{"administrative_unit_id":"example_administrative_unit_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_delete_extensions '{"administrative_unit_id":"example_administrative_unit_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_extensions

Get extensions from directory\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}.

Read read
Parameters
administrative_unit_id, extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_extensions '{"administrative_unit_id":"example_administrative_unit_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_get_extensions '{"administrative_unit_id":"example_administrative_unit_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_update_extensions

Update the navigation property extensions in directory\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}.

Write write
Parameters
administrative_unit_id, extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_update_extensions '{"administrative_unit_id":"example_administrative_unit_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_update_extensions '{"administrative_unit_id":"example_administrative_unit_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members

List members\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_list_members '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_create_members

Add a member\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/administrativeUnits/{administrativeUnit-id}/members.

Write write
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_create_members '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_create_members '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_777a

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/$count.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_777a '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_members_get_count_777a '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_delete_ref_members

Remove a member\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directory/administrativeUnits/{administrativeUnit-id}/members/$ref.

Write write
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_delete_ref_members '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_delete_ref_members '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_ref_members

List members\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/$ref.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_ref_members '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_list_ref_members '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_create_ref_members

Add a member\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/administrativeUnits/{administrativeUnit-id}/members/$ref.

Write write
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_create_ref_members '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_create_ref_members '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_application

Get the items of type microsoft.graph.application in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/graph.application.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_application '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_list_members_as_application '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_application_12bb

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/graph.application/$count.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_application_12bb '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_members_get_count_as_application_12bb '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_device

Get the items of type microsoft.graph.device in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/graph.device.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_device '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_list_members_as_device '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_device_a313

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/graph.device/$count.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_device_a313 '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_members_get_count_as_device_a313 '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_group

Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/graph.group.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_group '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_list_members_as_group '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_group_af07

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/graph.group/$count.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_group_af07 '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_members_get_count_as_group_af07 '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_org_contact

Get the items of type microsoft.graph.orgContact in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/graph.orgContact.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_org_contact '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_list_members_as_org_contact '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_org_contact_7392

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/graph.orgContact/$count.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_org_contact_7392 '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_members_get_count_as_org_contact_7392 '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_service_principal

Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/graph.servicePrincipal.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_service_principal '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_list_members_as_service_principal '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_service_principal_1d41

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/graph.servicePrincipal/$count.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_service_principal_1d41 '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_members_get_count_as_service_principal_1d41 '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_user

Get the items of type microsoft.graph.user in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/graph.user.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_user '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_list_members_as_user '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_user_5d18

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/graph.user/$count.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_user_5d18 '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_members_get_count_as_user_5d18 '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_delete_ref_directory_object

Remove a member\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/$ref.

Write write
Parameters
administrative_unit_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_delete_ref_directory_object '{"administrative_unit_id":"example_administrative_unit_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_members_delete_ref_directory_object '{"administrative_unit_id":"example_administrative_unit_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_application

Get the item of type microsoft.graph.directoryObject as microsoft.graph.application\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/graph.application.

Read read
Parameters
administrative_unit_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_application '{"administrative_unit_id":"example_administrative_unit_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_get_members_as_application '{"administrative_unit_id":"example_administrative_unit_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_device

Get the item of type microsoft.graph.directoryObject as microsoft.graph.device\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/graph.device.

Read read
Parameters
administrative_unit_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_device '{"administrative_unit_id":"example_administrative_unit_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_get_members_as_device '{"administrative_unit_id":"example_administrative_unit_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_group

Get the item of type microsoft.graph.directoryObject as microsoft.graph.group\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/graph.group.

Read read
Parameters
administrative_unit_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_group '{"administrative_unit_id":"example_administrative_unit_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_get_members_as_group '{"administrative_unit_id":"example_administrative_unit_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_org_contact

Get the item of type microsoft.graph.directoryObject as microsoft.graph.orgContact\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/graph.orgContact.

Read read
Parameters
administrative_unit_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_org_contact '{"administrative_unit_id":"example_administrative_unit_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_get_members_as_org_contact '{"administrative_unit_id":"example_administrative_unit_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_service_principal

Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/graph.servicePrincipal.

Read read
Parameters
administrative_unit_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_service_principal '{"administrative_unit_id":"example_administrative_unit_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_get_members_as_service_principal '{"administrative_unit_id":"example_administrative_unit_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_user

Get the item of type microsoft.graph.directoryObject as microsoft.graph.user\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/graph.user.

Read read
Parameters
administrative_unit_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_user '{"administrative_unit_id":"example_administrative_unit_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_get_members_as_user '{"administrative_unit_id":"example_administrative_unit_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_scoped_role_members

List scopedRoleMembers\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_scoped_role_members '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_list_scoped_role_members '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_create_scoped_role_members

Add a scopedRoleMember\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers.

Write write
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_create_scoped_role_members '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_create_scoped_role_members '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_scoped_role_members_get_count_cb3a

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/$count.

Read read
Parameters
administrative_unit_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_scoped_role_members_get_count_cb3a '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_scoped_role_members_get_count_cb3a '{"administrative_unit_id":"example_administrative_unit_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_delete_scoped_role_members

Remove a scopedRoleMember\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}.

Write write
Parameters
administrative_unit_id, scoped_role_membership_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_delete_scoped_role_members '{"administrative_unit_id":"example_administrative_unit_id","scoped_role_membership_id":"example_scoped_role_membership_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_delete_scoped_role_members '{"administrative_unit_id":"example_administrative_unit_id","scoped_role_membership_id":"example_scoped_role_membership_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_scoped_role_members

Get a scopedRoleMember\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}.

Read read
Parameters
administrative_unit_id, scoped_role_membership_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_scoped_role_members '{"administrative_unit_id":"example_administrative_unit_id","scoped_role_membership_id":"example_scoped_role_membership_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_get_scoped_role_members '{"administrative_unit_id":"example_administrative_unit_id","scoped_role_membership_id":"example_scoped_role_membership_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_administrative_units_update_scoped_role_members

Update the navigation property scopedRoleMembers in directory\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}.

Write write
Parameters
administrative_unit_id, scoped_role_membership_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_administrative_units_update_scoped_role_members '{"administrative_unit_id":"example_administrative_unit_id","scoped_role_membership_id":"example_scoped_role_membership_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_administrative_units_update_scoped_role_members '{"administrative_unit_id":"example_administrative_unit_id","scoped_role_membership_id":"example_scoped_role_membership_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_list_attribute_sets

List attributeSets\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/attributeSets.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_list_attribute_sets '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_list_attribute_sets '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_create_attribute_sets

Create attributeSet\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/attributeSets.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_create_attribute_sets '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_create_attribute_sets '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_attribute_sets_get_count_147b

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/attributeSets/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_attribute_sets_get_count_147b '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_attribute_sets_get_count_147b '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_delete_attribute_sets

Delete navigation property attributeSets for directory\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directory/attributeSets/{attributeSet-id}.

Write write
Parameters
attribute_set_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_delete_attribute_sets '{"attribute_set_id":"example_attribute_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_delete_attribute_sets '{"attribute_set_id":"example_attribute_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_get_attribute_sets

Get attributeSet\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/attributeSets/{attributeSet-id}.

Read read
Parameters
attribute_set_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_get_attribute_sets '{"attribute_set_id":"example_attribute_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_get_attribute_sets '{"attribute_set_id":"example_attribute_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_update_attribute_sets

Update attributeSet\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directory/attributeSets/{attributeSet-id}.

Write write
Parameters
attribute_set_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_update_attribute_sets '{"attribute_set_id":"example_attribute_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_update_attribute_sets '{"attribute_set_id":"example_attribute_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_list_custom_security_attribute_definitions

List customSecurityAttributeDefinitions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/customSecurityAttributeDefinitions.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_list_custom_security_attribute_definitions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_list_custom_security_attribute_definitions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_create_custom_security_attribute_definitions

Create customSecurityAttributeDefinition\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/customSecurityAttributeDefinitions.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_create_custom_security_attribute_definitions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_create_custom_security_attribute_definitions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_get_count_ae4b

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/customSecurityAttributeDefinitions/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_get_count_ae4b '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_custom_security_attribute_definitions_get_count_ae4b '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_delete_custom_security_attribute_definitions

Delete navigation property customSecurityAttributeDefinitions for directory\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}.

Write write
Parameters
custom_security_attribute_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_delete_custom_security_attribute_definitions '{"custom_security_attribute_definition_id":"example_custom_security_attribute_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_delete_custom_security_attribute_definitions '{"custom_security_attribute_definition_id":"example_custom_security_attribute_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_get_custom_security_attribute_definitions

Get customSecurityAttributeDefinition\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}.

Read read
Parameters
custom_security_attribute_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_get_custom_security_attribute_definitions '{"custom_security_attribute_definition_id":"example_custom_security_attribute_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_get_custom_security_attribute_definitions '{"custom_security_attribute_definition_id":"example_custom_security_attribute_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_update_custom_security_attribute_definitions

Update customSecurityAttributeDefinition\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}.

Write write
Parameters
custom_security_attribute_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_update_custom_security_attribute_definitions '{"custom_security_attribute_definition_id":"example_custom_security_attribute_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_update_custom_security_attribute_definitions '{"custom_security_attribute_definition_id":"example_custom_security_attribute_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_list_allowed_values

List allowedValues\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues.

Read read
Parameters
custom_security_attribute_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_list_allowed_values '{"custom_security_attribute_definition_id":"example_custom_security_attribute_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_custom_security_attribute_definitions_list_allowed_values '{"custom_security_attribute_definition_id":"example_custom_security_attribute_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_create_allowed_values

Create allowedValue\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues.

Write write
Parameters
custom_security_attribute_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_create_allowed_values '{"custom_security_attribute_definition_id":"example_custom_security_attribute_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_custom_security_attribute_definitions_create_allowed_values '{"custom_security_attribute_definition_id":"example_custom_security_attribute_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_allowed_values_get_count_c982

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/$count.

Read read
Parameters
custom_security_attribute_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_allowed_values_get_count_c982 '{"custom_security_attribute_definition_id":"example_custom_security_attribute_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_custom_security_attribute_definitions_allowed_values_get_count_c982 '{"custom_security_attribute_definition_id":"example_custom_security_attribute_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_delete_allowed_values

Delete navigation property allowedValues for directory\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}.

Write write
Parameters
custom_security_attribute_definition_id, allowed_value_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_delete_allowed_values '{"custom_security_attribute_definition_id":"example_custom_security_attribute_definition_id","allowed_value_id":"example_allowed_value_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_custom_security_attribute_definitions_delete_allowed_values '{"custom_security_attribute_definition_id":"example_custom_security_attribute_definition_id","allowed_value_id":"example_allowed_value_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_get_allowed_values

Get allowedValue\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}.

Read read
Parameters
custom_security_attribute_definition_id, allowed_value_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_get_allowed_values '{"custom_security_attribute_definition_id":"example_custom_security_attribute_definition_id","allowed_value_id":"example_allowed_value_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_custom_security_attribute_definitions_get_allowed_values '{"custom_security_attribute_definition_id":"example_custom_security_attribute_definition_id","allowed_value_id":"example_allowed_value_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_update_allowed_values

Update allowedValue\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}.

Write write
Parameters
custom_security_attribute_definition_id, allowed_value_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_update_allowed_values '{"custom_security_attribute_definition_id":"example_custom_security_attribute_definition_id","allowed_value_id":"example_allowed_value_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_custom_security_attribute_definitions_update_allowed_values '{"custom_security_attribute_definition_id":"example_custom_security_attribute_definition_id","allowed_value_id":"example_allowed_value_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items

Get deleted item (directory object)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_list_deleted_items '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_665f

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_665f '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_deleted_items_get_count_665f '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_available_extension_properties

Invoke action getAvailableExtensionProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/deletedItems/getAvailableExtensionProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_deleted_items_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_by_ids

Invoke action getByIds\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/deletedItems/getByIds.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_deleted_items_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_administrative_unit

Get the items of type microsoft.graph.administrativeUnit in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/graph.administrativeUnit.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_administrative_unit '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_list_deleted_items_as_administrative_unit '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_administrative_unit_0f56

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/graph.administrativeUnit/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_administrative_unit_0f56 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_deleted_items_get_count_as_administrative_unit_0f56 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_application

Get the items of type microsoft.graph.application in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/graph.application.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_application '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_list_deleted_items_as_application '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_application_09ac

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/graph.application/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_application_09ac '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_deleted_items_get_count_as_application_09ac '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_device

Get the items of type microsoft.graph.device in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/graph.device.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_device '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_list_deleted_items_as_device '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_device_6f35

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/graph.device/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_device_6f35 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_deleted_items_get_count_as_device_6f35 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_group

List deletedItems (directory objects)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/graph.group.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_group '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_list_deleted_items_as_group '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_group_255d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/graph.group/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_group_255d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_deleted_items_get_count_as_group_255d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_service_principal

Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/graph.servicePrincipal.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_service_principal '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_list_deleted_items_as_service_principal '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_service_principal_6632

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/graph.servicePrincipal/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_service_principal_6632 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_deleted_items_get_count_as_service_principal_6632 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_user

Get the items of type microsoft.graph.user in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/graph.user.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_user '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_list_deleted_items_as_user '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_user_bc15

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/graph.user/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_user_bc15 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_deleted_items_get_count_as_user_bc15 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_deleted_items_validate_properties

Invoke action validateProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/deletedItems/validateProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_deleted_items_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_deleted_items_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_delete_deleted_items

Permanently delete item (directory object)\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directory/deletedItems/{directoryObject-id}.

Write write
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_delete_deleted_items '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_delete_deleted_items '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items

Get deleted item (directory object)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/{directoryObject-id}.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_get_deleted_items '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_check_member_groups

Invoke action checkMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/deletedItems/{directoryObject-id}/checkMemberGroups.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_check_member_groups '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_deleted_items_directory_object_check_member_groups '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_check_member_objects

Invoke action checkMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/deletedItems/{directoryObject-id}/checkMemberObjects.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_check_member_objects '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_deleted_items_directory_object_check_member_objects '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_get_member_groups

Invoke action getMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/deletedItems/{directoryObject-id}/getMemberGroups.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_get_member_groups '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_deleted_items_directory_object_get_member_groups '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_get_member_objects

Invoke action getMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/deletedItems/{directoryObject-id}/getMemberObjects.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_get_member_objects '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_deleted_items_directory_object_get_member_objects '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_administrative_unit

Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/{directoryObject-id}/graph.administrativeUnit.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_administrative_unit '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_get_deleted_items_as_administrative_unit '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_application

Get the item of type microsoft.graph.directoryObject as microsoft.graph.application\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/{directoryObject-id}/graph.application.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_application '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_get_deleted_items_as_application '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_device

Get the item of type microsoft.graph.directoryObject as microsoft.graph.device\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/{directoryObject-id}/graph.device.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_device '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_get_deleted_items_as_device '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_group

List deletedItems (directory objects)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/{directoryObject-id}/graph.group.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_group '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_get_deleted_items_as_group '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_service_principal

Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/{directoryObject-id}/graph.servicePrincipal.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_service_principal '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_get_deleted_items_as_service_principal '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_user

Get the item of type microsoft.graph.directoryObject as microsoft.graph.user\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deletedItems/{directoryObject-id}/graph.user.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_user '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_get_deleted_items_as_user '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_restore

Invoke action restore\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/deletedItems/{directoryObject-id}/restore.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_restore '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_deleted_items_directory_object_restore '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_list_device_local_credentials

List deviceLocalCredentialInfo\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deviceLocalCredentials.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_list_device_local_credentials '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_list_device_local_credentials '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_create_device_local_credentials

Create new navigation property to deviceLocalCredentials for directory\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/deviceLocalCredentials.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_create_device_local_credentials '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_create_device_local_credentials '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_device_local_credentials_get_count_43fe

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deviceLocalCredentials/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_device_local_credentials_get_count_43fe '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_device_local_credentials_get_count_43fe '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_delete_device_local_credentials

Delete navigation property deviceLocalCredentials for directory\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directory/deviceLocalCredentials/{deviceLocalCredentialInfo-id}.

Write write
Parameters
device_local_credential_info_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_delete_device_local_credentials '{"device_local_credential_info_id":"example_device_local_credential_info_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_delete_device_local_credentials '{"device_local_credential_info_id":"example_device_local_credential_info_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_get_device_local_credentials

Get deviceLocalCredentialInfo\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/deviceLocalCredentials/{deviceLocalCredentialInfo-id}.

Read read
Parameters
device_local_credential_info_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_get_device_local_credentials '{"device_local_credential_info_id":"example_device_local_credential_info_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_get_device_local_credentials '{"device_local_credential_info_id":"example_device_local_credential_info_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_update_device_local_credentials

Update the navigation property deviceLocalCredentials in directory\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directory/deviceLocalCredentials/{deviceLocalCredentialInfo-id}.

Write write
Parameters
device_local_credential_info_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_update_device_local_credentials '{"device_local_credential_info_id":"example_device_local_credential_info_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_update_device_local_credentials '{"device_local_credential_info_id":"example_device_local_credential_info_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_list_federation_configurations

Get federationConfigurations from directory\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/federationConfigurations.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_list_federation_configurations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_list_federation_configurations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_create_federation_configurations

Create new navigation property to federationConfigurations for directory\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/federationConfigurations.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_create_federation_configurations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_create_federation_configurations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_federation_configurations_get_count_1592

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/federationConfigurations/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_federation_configurations_get_count_1592 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_federation_configurations_get_count_1592 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_federation_configurations_available_provider_types

Invoke function availableProviderTypes\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/federationConfigurations/availableProviderTypes().

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_federation_configurations_available_provider_types '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_federation_configurations_available_provider_types '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_delete_federation_configurations

Delete samlOrWsFedExternalDomainFederation\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directory/federationConfigurations/{identityProviderBase-id}.

Write write
Parameters
identity_provider_base_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_delete_federation_configurations '{"identity_provider_base_id":"example_identity_provider_base_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_delete_federation_configurations '{"identity_provider_base_id":"example_identity_provider_base_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_get_federation_configurations

Get federationConfigurations from directory\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/federationConfigurations/{identityProviderBase-id}.

Read read
Parameters
identity_provider_base_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_get_federation_configurations '{"identity_provider_base_id":"example_identity_provider_base_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_get_federation_configurations '{"identity_provider_base_id":"example_identity_provider_base_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_update_federation_configurations

Update the navigation property federationConfigurations in directory\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directory/federationConfigurations/{identityProviderBase-id}.

Write write
Parameters
identity_provider_base_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_update_federation_configurations '{"identity_provider_base_id":"example_identity_provider_base_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_update_federation_configurations '{"identity_provider_base_id":"example_identity_provider_base_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_list_on_premises_synchronization

Get onPremisesDirectorySynchronization\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/onPremisesSynchronization.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_list_on_premises_synchronization '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_list_on_premises_synchronization '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_create_on_premises_synchronization

Create new navigation property to onPremisesSynchronization for directory\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/onPremisesSynchronization.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_create_on_premises_synchronization '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_create_on_premises_synchronization '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_on_premises_synchronization_get_count_df9d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/onPremisesSynchronization/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_on_premises_synchronization_get_count_df9d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_on_premises_synchronization_get_count_df9d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_delete_on_premises_synchronization

Delete navigation property onPremisesSynchronization for directory\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directory/onPremisesSynchronization/{onPremisesDirectorySynchronization-id}.

Write write
Parameters
on_premises_directory_synchronization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_delete_on_premises_synchronization '{"on_premises_directory_synchronization_id":"example_on_premises_directory_synchronization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_delete_on_premises_synchronization '{"on_premises_directory_synchronization_id":"example_on_premises_directory_synchronization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_get_on_premises_synchronization

Get onPremisesDirectorySynchronization\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/onPremisesSynchronization/{onPremisesDirectorySynchronization-id}.

Read read
Parameters
on_premises_directory_synchronization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_get_on_premises_synchronization '{"on_premises_directory_synchronization_id":"example_on_premises_directory_synchronization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_get_on_premises_synchronization '{"on_premises_directory_synchronization_id":"example_on_premises_directory_synchronization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_update_on_premises_synchronization

Update onPremisesDirectorySynchronization\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directory/onPremisesSynchronization/{onPremisesDirectorySynchronization-id}.

Write write
Parameters
on_premises_directory_synchronization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_update_on_premises_synchronization '{"on_premises_directory_synchronization_id":"example_on_premises_directory_synchronization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_update_on_premises_synchronization '{"on_premises_directory_synchronization_id":"example_on_premises_directory_synchronization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_delete_public_key_infrastructure

Delete navigation property publicKeyInfrastructure for directory\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directory/publicKeyInfrastructure.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_delete_public_key_infrastructure '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_delete_public_key_infrastructure '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_get_public_key_infrastructure

Get publicKeyInfrastructure from directory\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/publicKeyInfrastructure.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_get_public_key_infrastructure '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_get_public_key_infrastructure '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_update_public_key_infrastructure

Update the navigation property publicKeyInfrastructure in directory\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directory/publicKeyInfrastructure.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_update_public_key_infrastructure '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_update_public_key_infrastructure '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_list_certificate_based_auth_configurations

List certificateBasedAuthPki objects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/publicKeyInfrastructure/certificateBasedAuthConfigurations.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_list_certificate_based_auth_configurations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_public_key_infrastructure_list_certificate_based_auth_configurations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_create_certificate_based_auth_configurations

Create certificateBasedAuthPki\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/publicKeyInfrastructure/certificateBasedAuthConfigurations.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_create_certificate_based_auth_configurations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_public_key_infrastructure_create_certificate_based_auth_configurations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_get_count_4154

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_get_count_4154 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_get_count_4154 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_delete_certificate_based_auth_configurations

Delete certificateBasedAuthPki\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{certificateBasedAuthPki-id}.

Write write
Parameters
certificate_based_auth_pki_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_delete_certificate_based_auth_configurations '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_public_key_infrastructure_delete_certificate_based_auth_configurations '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_get_certificate_based_auth_configurations

Get certificateBasedAuthPki\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{certificateBasedAuthPki-id}.

Read read
Parameters
certificate_based_auth_pki_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_get_certificate_based_auth_configurations '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_public_key_infrastructure_get_certificate_based_auth_configurations '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_update_certificate_based_auth_configurations

Update certificateBasedAuthPki\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{certificateBasedAuthPki-id}.

Write write
Parameters
certificate_based_auth_pki_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_update_certificate_based_auth_configurations '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_public_key_infrastructure_update_certificate_based_auth_configurations '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_list_certificate_authorities

List certificateAuthorityDetail objects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{certificateBasedAuthPki-id}/certificateAuthorities.

Read read
Parameters
certificate_based_auth_pki_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_list_certificate_authorities '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_list_certificate_authorities '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_create_certificate_authorities

Create certificateAuthorityDetail\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{certificateBasedAuthPki-id}/certificateAuthorities.

Write write
Parameters
certificate_based_auth_pki_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_create_certificate_authorities '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_create_certificate_authorities '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_certificate_authorities_get_count_8126

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{certificateBasedAuthPki-id}/certificateAuthorities/$count.

Read read
Parameters
certificate_based_auth_pki_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_certificate_authorities_get_count_8126 '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_certificate_authorities_get_count_8126 '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_delete_certificate_authorities

Delete certificateAuthorityDetail\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{certificateBasedAuthPki-id}/certificateAuthorities/{certificateAuthorityDetail-id}.

Write write
Parameters
certificate_based_auth_pki_id, certificate_authority_detail_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_delete_certificate_authorities '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","certificate_authority_detail_id":"example_certificate_authority_detail_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_delete_certificate_authorities '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","certificate_authority_detail_id":"example_certificate_authority_detail_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_get_certificate_authorities

Get certificateAuthorities from directory\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{certificateBasedAuthPki-id}/certificateAuthorities/{certificateAuthorityDetail-id}.

Read read
Parameters
certificate_based_auth_pki_id, certificate_authority_detail_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_get_certificate_authorities '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","certificate_authority_detail_id":"example_certificate_authority_detail_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_get_certificate_authorities '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","certificate_authority_detail_id":"example_certificate_authority_detail_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_update_certificate_authorities

Update certificateAuthorityDetail\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{certificateBasedAuthPki-id}/certificateAuthorities/{certificateAuthorityDetail-id}.

Write write
Parameters
certificate_based_auth_pki_id, certificate_authority_detail_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_update_certificate_authorities '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","certificate_authority_detail_id":"example_certificate_authority_detail_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_update_certificate_authorities '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","certificate_authority_detail_id":"example_certificate_authority_detail_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_certificate_based_auth_pki_upload

Invoke action upload\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{certificateBasedAuthPki-id}/upload.

Read read
Parameters
certificate_based_auth_pki_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_certificate_based_auth_pki_upload '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_certificate_based_auth_pki_upload '{"certificate_based_auth_pki_id":"example_certificate_based_auth_pki_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_list_subscriptions

List subscriptions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/subscriptions.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_list_subscriptions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_list_subscriptions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_create_subscriptions

Create new navigation property to subscriptions for directory\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directory/subscriptions.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_create_subscriptions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_create_subscriptions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_subscriptions_delete_by_commerce_subscription_id

Delete navigation property subscriptions for directory\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directory/subscriptions(commerceSubscriptionId='{commerceSubscriptionId}').

Write write
Parameters
commerce_subscription_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_subscriptions_delete_by_commerce_subscription_id '{"commerce_subscription_id":"example_commerce_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_subscriptions_delete_by_commerce_subscription_id '{"commerce_subscription_id":"example_commerce_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_subscriptions_get_by_commerce_subscription_id

Get companySubscription\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/subscriptions(commerceSubscriptionId='{commerceSubscriptionId}').

Read read
Parameters
commerce_subscription_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_subscriptions_get_by_commerce_subscription_id '{"commerce_subscription_id":"example_commerce_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_subscriptions_get_by_commerce_subscription_id '{"commerce_subscription_id":"example_commerce_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_subscriptions_update_by_commerce_subscription_id

Update the navigation property subscriptions in directory\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directory/subscriptions(commerceSubscriptionId='{commerceSubscriptionId}').

Write write
Parameters
commerce_subscription_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_subscriptions_update_by_commerce_subscription_id '{"commerce_subscription_id":"example_commerce_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_subscriptions_update_by_commerce_subscription_id '{"commerce_subscription_id":"example_commerce_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_subscriptions_get_count_06e4

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/subscriptions/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_subscriptions_get_count_06e4 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_subscriptions_get_count_06e4 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_delete_subscriptions

Delete navigation property subscriptions for directory\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directory/subscriptions/{companySubscription-id}.

Write write
Parameters
company_subscription_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_delete_subscriptions '{"company_subscription_id":"example_company_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_delete_subscriptions '{"company_subscription_id":"example_company_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_get_subscriptions

Get companySubscription\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directory/subscriptions/{companySubscription-id}.

Read read
Parameters
company_subscription_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_get_subscriptions '{"company_subscription_id":"example_company_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_get_subscriptions '{"company_subscription_id":"example_company_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_update_subscriptions

Update the navigation property subscriptions in directory\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directory/subscriptions/{companySubscription-id}.

Write write
Parameters
company_subscription_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_update_subscriptions '{"company_subscription_id":"example_company_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_update_subscriptions '{"company_subscription_id":"example_company_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_list_directory_object

Get entities from directoryObjects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryObjects.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_list_directory_object '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_objects_directory_object_list_directory_object '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_create_directory_object

Add new entity to directoryObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryObjects.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_create_directory_object '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_objects_directory_object_create_directory_object '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_objects_get_count_3210

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryObjects/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_objects_get_count_3210 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_objects_get_count_3210 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_objects_delta

Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryObjects/delta().

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_objects_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_objects_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_objects_get_available_extension_properties

Invoke action getAvailableExtensionProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryObjects/getAvailableExtensionProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_objects_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_objects_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_objects_get_by_ids

Invoke action getByIds\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryObjects/getByIds.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_objects_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_objects_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_objects_validate_properties

Invoke action validateProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryObjects/validateProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_objects_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_objects_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_delete_directory_object

Delete directoryObject\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directoryObjects/{directoryObject-id}.

Write write
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_delete_directory_object '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_objects_directory_object_delete_directory_object '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_get_directory_object

Get directoryObject\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryObjects/{directoryObject-id}.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_get_directory_object '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_objects_directory_object_get_directory_object '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_update_directory_object

Update entity in directoryObjects\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directoryObjects/{directoryObject-id}.

Write write
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_update_directory_object '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_objects_directory_object_update_directory_object '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_check_member_groups

Invoke action checkMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryObjects/{directoryObject-id}/checkMemberGroups.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_check_member_groups '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_objects_directory_object_check_member_groups '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_check_member_objects

Invoke action checkMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryObjects/{directoryObject-id}/checkMemberObjects.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_check_member_objects '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_objects_directory_object_check_member_objects '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_get_member_groups

Invoke action getMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryObjects/{directoryObject-id}/getMemberGroups.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_get_member_groups '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_objects_directory_object_get_member_groups '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_get_member_objects

Invoke action getMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryObjects/{directoryObject-id}/getMemberObjects.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_get_member_objects '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_objects_directory_object_get_member_objects '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_restore

Invoke action restore\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryObjects/{directoryObject-id}/restore.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_restore '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_objects_directory_object_restore '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_list_directory_role_template

List directoryRoleTemplates\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoleTemplates.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_list_directory_role_template '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_role_templates_directory_role_template_list_directory_role_template '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_create_directory_role_template

Add new entity to directoryRoleTemplates\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoleTemplates.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_create_directory_role_template '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_role_templates_directory_role_template_create_directory_role_template '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_role_templates_get_count_ed85

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoleTemplates/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_role_templates_get_count_ed85 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_role_templates_get_count_ed85 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_role_templates_delta

Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoleTemplates/delta().

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_role_templates_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_role_templates_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_role_templates_get_available_extension_properties

Invoke action getAvailableExtensionProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoleTemplates/getAvailableExtensionProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_role_templates_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_role_templates_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_role_templates_get_by_ids

Invoke action getByIds\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoleTemplates/getByIds.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_role_templates_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_role_templates_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_role_templates_validate_properties

Invoke action validateProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoleTemplates/validateProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_role_templates_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_role_templates_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_delete_directory_role_template

Delete entity from directoryRoleTemplates\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directoryRoleTemplates/{directoryRoleTemplate-id}.

Write write
Parameters
directory_role_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_delete_directory_role_template '{"directory_role_template_id":"example_directory_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_role_templates_directory_role_template_delete_directory_role_template '{"directory_role_template_id":"example_directory_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_get_directory_role_template

Get directoryRoleTemplate\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoleTemplates/{directoryRoleTemplate-id}.

Read read
Parameters
directory_role_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_get_directory_role_template '{"directory_role_template_id":"example_directory_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_role_templates_directory_role_template_get_directory_role_template '{"directory_role_template_id":"example_directory_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_update_directory_role_template

Update entity in directoryRoleTemplates\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directoryRoleTemplates/{directoryRoleTemplate-id}.

Write write
Parameters
directory_role_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_update_directory_role_template '{"directory_role_template_id":"example_directory_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_role_templates_directory_role_template_update_directory_role_template '{"directory_role_template_id":"example_directory_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_check_member_groups

Invoke action checkMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberGroups.

Read read
Parameters
directory_role_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_check_member_groups '{"directory_role_template_id":"example_directory_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_role_templates_directory_role_template_check_member_groups '{"directory_role_template_id":"example_directory_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_check_member_objects

Invoke action checkMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberObjects.

Read read
Parameters
directory_role_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_check_member_objects '{"directory_role_template_id":"example_directory_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_role_templates_directory_role_template_check_member_objects '{"directory_role_template_id":"example_directory_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_get_member_groups

Invoke action getMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberGroups.

Read read
Parameters
directory_role_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_get_member_groups '{"directory_role_template_id":"example_directory_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_role_templates_directory_role_template_get_member_groups '{"directory_role_template_id":"example_directory_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_get_member_objects

Invoke action getMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberObjects.

Read read
Parameters
directory_role_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_get_member_objects '{"directory_role_template_id":"example_directory_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_role_templates_directory_role_template_get_member_objects '{"directory_role_template_id":"example_directory_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_restore

Invoke action restore\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoleTemplates/{directoryRoleTemplate-id}/restore.

Read read
Parameters
directory_role_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_restore '{"directory_role_template_id":"example_directory_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_role_templates_directory_role_template_restore '{"directory_role_template_id":"example_directory_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_list_directory_role

List directoryRoles\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_list_directory_role '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_directory_role_list_directory_role '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_create_directory_role

Activate directoryRole\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoles.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_create_directory_role '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_directory_role_create_directory_role '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_delete_directory_role_by_role_template_id

Delete entity from directoryRoles by roleTemplateId\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directoryRoles(roleTemplateId='{roleTemplateId}').

Write write
Parameters
role_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_delete_directory_role_by_role_template_id '{"role_template_id":"example_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_directory_role_delete_directory_role_by_role_template_id '{"role_template_id":"example_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_get_directory_role_by_role_template_id

Get directoryRole\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles(roleTemplateId='{roleTemplateId}').

Read read
Parameters
role_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_get_directory_role_by_role_template_id '{"role_template_id":"example_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_directory_role_get_directory_role_by_role_template_id '{"role_template_id":"example_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_update_directory_role_by_role_template_id

Update entity in directoryRoles by roleTemplateId\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directoryRoles(roleTemplateId='{roleTemplateId}').

Write write
Parameters
role_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_update_directory_role_by_role_template_id '{"role_template_id":"example_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_directory_role_update_directory_role_by_role_template_id '{"role_template_id":"example_role_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_get_count_ad68

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_get_count_ad68 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_get_count_ad68 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_delta

Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/delta().

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_get_available_extension_properties

Invoke action getAvailableExtensionProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoles/getAvailableExtensionProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_get_by_ids

Invoke action getByIds\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoles/getByIds.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_validate_properties

Invoke action validateProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoles/validateProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_delete_directory_role

Delete entity from directoryRoles\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directoryRoles/{directoryRole-id}.

Write write
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_delete_directory_role '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_directory_role_delete_directory_role '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_get_directory_role

Get directoryRole\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_get_directory_role '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_directory_role_get_directory_role '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_update_directory_role

Update entity in directoryRoles\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directoryRoles/{directoryRole-id}.

Write write
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_update_directory_role '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_directory_role_update_directory_role '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_check_member_groups

Invoke action checkMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoles/{directoryRole-id}/checkMemberGroups.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_check_member_groups '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_directory_role_check_member_groups '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_check_member_objects

Invoke action checkMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoles/{directoryRole-id}/checkMemberObjects.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_check_member_objects '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_directory_role_check_member_objects '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_get_member_groups

Invoke action getMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoles/{directoryRole-id}/getMemberGroups.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_get_member_groups '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_directory_role_get_member_groups '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_get_member_objects

Invoke action getMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoles/{directoryRole-id}/getMemberObjects.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_get_member_objects '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_directory_role_get_member_objects '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_list_members

List members of a directory role\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_list_members '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_list_members '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_5361

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/$count.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_5361 '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_members_get_count_5361 '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_delete_ref_members

Remove directory role member\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directoryRoles/{directoryRole-id}/members/$ref.

Write write
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_delete_ref_members '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_delete_ref_members '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_list_ref_members

List members of a directory role\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/$ref.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_list_ref_members '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_list_ref_members '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_create_ref_members

Add directory role member\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoles/{directoryRole-id}/members/$ref.

Write write
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_create_ref_members '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_create_ref_members '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_application

Get the items of type microsoft.graph.application in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/graph.application.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_application '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_list_members_as_application '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_application_290c

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/graph.application/$count.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_application_290c '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_members_get_count_as_application_290c '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_device

Get the items of type microsoft.graph.device in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/graph.device.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_device '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_list_members_as_device '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_device_e712

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/graph.device/$count.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_device_e712 '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_members_get_count_as_device_e712 '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_group

Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/graph.group.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_group '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_list_members_as_group '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_group_b36f

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/graph.group/$count.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_group_b36f '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_members_get_count_as_group_b36f '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_org_contact

Get the items of type microsoft.graph.orgContact in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/graph.orgContact.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_org_contact '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_list_members_as_org_contact '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_org_contact_3e36

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/graph.orgContact/$count.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_org_contact_3e36 '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_members_get_count_as_org_contact_3e36 '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_service_principal

Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/graph.servicePrincipal.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_service_principal '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_list_members_as_service_principal '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_service_principal_b8f5

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/graph.servicePrincipal/$count.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_service_principal_b8f5 '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_members_get_count_as_service_principal_b8f5 '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_user

Get the items of type microsoft.graph.user in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/graph.user.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_user '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_list_members_as_user '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_user_af1f

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/graph.user/$count.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_user_af1f '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_members_get_count_as_user_af1f '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_members_delete_ref_directory_object

Remove directory role member\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directoryRoles/{directoryRole-id}/members/{directoryObject-id}/$ref.

Write write
Parameters
directory_role_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_members_delete_ref_directory_object '{"directory_role_id":"example_directory_role_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_members_delete_ref_directory_object '{"directory_role_id":"example_directory_role_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_application

Get the item of type microsoft.graph.directoryObject as microsoft.graph.application\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/{directoryObject-id}/graph.application.

Read read
Parameters
directory_role_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_application '{"directory_role_id":"example_directory_role_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_get_members_as_application '{"directory_role_id":"example_directory_role_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_device

Get the item of type microsoft.graph.directoryObject as microsoft.graph.device\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/{directoryObject-id}/graph.device.

Read read
Parameters
directory_role_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_device '{"directory_role_id":"example_directory_role_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_get_members_as_device '{"directory_role_id":"example_directory_role_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_group

Get the item of type microsoft.graph.directoryObject as microsoft.graph.group\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/{directoryObject-id}/graph.group.

Read read
Parameters
directory_role_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_group '{"directory_role_id":"example_directory_role_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_get_members_as_group '{"directory_role_id":"example_directory_role_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_org_contact

Get the item of type microsoft.graph.directoryObject as microsoft.graph.orgContact\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/{directoryObject-id}/graph.orgContact.

Read read
Parameters
directory_role_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_org_contact '{"directory_role_id":"example_directory_role_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_get_members_as_org_contact '{"directory_role_id":"example_directory_role_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_service_principal

Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/{directoryObject-id}/graph.servicePrincipal.

Read read
Parameters
directory_role_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_service_principal '{"directory_role_id":"example_directory_role_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_get_members_as_service_principal '{"directory_role_id":"example_directory_role_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_user

Get the item of type microsoft.graph.directoryObject as microsoft.graph.user\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/members/{directoryObject-id}/graph.user.

Read read
Parameters
directory_role_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_user '{"directory_role_id":"example_directory_role_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_get_members_as_user '{"directory_role_id":"example_directory_role_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_restore

Invoke action restore\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoles/{directoryRole-id}/restore.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_restore '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_directory_role_restore '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_list_scoped_members

List scopedMembers for a directory role\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/scopedMembers.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_list_scoped_members '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_list_scoped_members '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_create_scoped_members

Create new navigation property to scopedMembers for directoryRoles\n\nOfficial Microsoft Graph v1.0 endpoint: POST /directoryRoles/{directoryRole-id}/scopedMembers.

Write write
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_create_scoped_members '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_create_scoped_members '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_scoped_members_get_count_b2b2

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/scopedMembers/$count.

Read read
Parameters
directory_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_scoped_members_get_count_b2b2 '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_scoped_members_get_count_b2b2 '{"directory_role_id":"example_directory_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_delete_scoped_members

Delete navigation property scopedMembers for directoryRoles\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}.

Write write
Parameters
directory_role_id, scoped_role_membership_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_delete_scoped_members '{"directory_role_id":"example_directory_role_id","scoped_role_membership_id":"example_scoped_role_membership_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_delete_scoped_members '{"directory_role_id":"example_directory_role_id","scoped_role_membership_id":"example_scoped_role_membership_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_get_scoped_members

Get scopedMembers from directoryRoles\n\nOfficial Microsoft Graph v1.0 endpoint: GET /directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}.

Read read
Parameters
directory_role_id, scoped_role_membership_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_get_scoped_members '{"directory_role_id":"example_directory_role_id","scoped_role_membership_id":"example_scoped_role_membership_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_get_scoped_members '{"directory_role_id":"example_directory_role_id","scoped_role_membership_id":"example_scoped_role_membership_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_directory_roles_update_scoped_members

Update the navigation property scopedMembers in directoryRoles\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}.

Write write
Parameters
directory_role_id, scoped_role_membership_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_directory_roles_update_scoped_members '{"directory_role_id":"example_directory_role_id","scoped_role_membership_id":"example_scoped_role_membership_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_directory_roles_update_scoped_members '{"directory_role_id":"example_directory_role_id","scoped_role_membership_id":"example_scoped_role_membership_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_domains_domain_list_domain

List domains\n\nOfficial Microsoft Graph v1.0 endpoint: GET /domains.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_domain_list_domain '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_domain_list_domain '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_domains_domain_create_domain

Create domain\n\nOfficial Microsoft Graph v1.0 endpoint: POST /domains.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_domain_create_domain '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_domain_create_domain '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_domains_get_count_3c31

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /domains/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_get_count_3c31 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_get_count_3c31 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_domains_domain_delete_domain

Delete domain\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /domains/{domain-id}.

Write write
Parameters
domain_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_domain_delete_domain '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_domain_delete_domain '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_domains_domain_get_domain

Get domain\n\nOfficial Microsoft Graph v1.0 endpoint: GET /domains/{domain-id}.

Read read
Parameters
domain_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_domain_get_domain '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_domain_get_domain '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_domains_domain_update_domain

Update domain\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /domains/{domain-id}.

Write write
Parameters
domain_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_domain_update_domain '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_domain_update_domain '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_domains_list_domain_name_references

List domainNameReferences\n\nOfficial Microsoft Graph v1.0 endpoint: GET /domains/{domain-id}/domainNameReferences.

Read read
Parameters
domain_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_list_domain_name_references '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_list_domain_name_references '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_domains_domain_name_references_get_count_a205

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /domains/{domain-id}/domainNameReferences/$count.

Read read
Parameters
domain_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_domain_name_references_get_count_a205 '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_domain_name_references_get_count_a205 '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_domains_get_domain_name_references

Get domainNameReferences from domains\n\nOfficial Microsoft Graph v1.0 endpoint: GET /domains/{domain-id}/domainNameReferences/{directoryObject-id}.

Read read
Parameters
domain_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_get_domain_name_references '{"domain_id":"example_domain_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_get_domain_name_references '{"domain_id":"example_domain_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_domains_list_federation_configuration

List internalDomainFederations\n\nOfficial Microsoft Graph v1.0 endpoint: GET /domains/{domain-id}/federationConfiguration.

Read read
Parameters
domain_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_list_federation_configuration '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_list_federation_configuration '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_domains_create_federation_configuration

Create internalDomainFederation\n\nOfficial Microsoft Graph v1.0 endpoint: POST /domains/{domain-id}/federationConfiguration.

Write write
Parameters
domain_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_create_federation_configuration '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_create_federation_configuration '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_domains_federation_configuration_get_count_9087

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /domains/{domain-id}/federationConfiguration/$count.

Read read
Parameters
domain_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_federation_configuration_get_count_9087 '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_federation_configuration_get_count_9087 '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_domains_delete_federation_configuration

Delete internalDomainFederation\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /domains/{domain-id}/federationConfiguration/{internalDomainFederation-id}.

Write write
Parameters
domain_id, internal_domain_federation_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_delete_federation_configuration '{"domain_id":"example_domain_id","internal_domain_federation_id":"example_internal_domain_federation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_delete_federation_configuration '{"domain_id":"example_domain_id","internal_domain_federation_id":"example_internal_domain_federation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_domains_get_federation_configuration

Get internalDomainFederation\n\nOfficial Microsoft Graph v1.0 endpoint: GET /domains/{domain-id}/federationConfiguration/{internalDomainFederation-id}.

Read read
Parameters
domain_id, internal_domain_federation_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_get_federation_configuration '{"domain_id":"example_domain_id","internal_domain_federation_id":"example_internal_domain_federation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_get_federation_configuration '{"domain_id":"example_domain_id","internal_domain_federation_id":"example_internal_domain_federation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_domains_update_federation_configuration

Update internalDomainFederation\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /domains/{domain-id}/federationConfiguration/{internalDomainFederation-id}.

Write write
Parameters
domain_id, internal_domain_federation_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_update_federation_configuration '{"domain_id":"example_domain_id","internal_domain_federation_id":"example_internal_domain_federation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_update_federation_configuration '{"domain_id":"example_domain_id","internal_domain_federation_id":"example_internal_domain_federation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_domains_domain_force_delete

Invoke action forceDelete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /domains/{domain-id}/forceDelete.

Read read
Parameters
domain_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_domain_force_delete '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_domain_force_delete '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_domains_domain_promote

Invoke action promote\n\nOfficial Microsoft Graph v1.0 endpoint: POST /domains/{domain-id}/promote.

Read read
Parameters
domain_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_domain_promote '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_domain_promote '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_domains_get_root_domain

Get rootDomain\n\nOfficial Microsoft Graph v1.0 endpoint: GET /domains/{domain-id}/rootDomain.

Read read
Parameters
domain_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_get_root_domain '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_get_root_domain '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_domains_list_service_configuration_records

List serviceConfigurationRecords\n\nOfficial Microsoft Graph v1.0 endpoint: GET /domains/{domain-id}/serviceConfigurationRecords.

Read read
Parameters
domain_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_list_service_configuration_records '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_list_service_configuration_records '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_domains_create_service_configuration_records

Create new navigation property to serviceConfigurationRecords for domains\n\nOfficial Microsoft Graph v1.0 endpoint: POST /domains/{domain-id}/serviceConfigurationRecords.

Write write
Parameters
domain_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_create_service_configuration_records '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_create_service_configuration_records '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_domains_service_configuration_records_get_count_999b

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /domains/{domain-id}/serviceConfigurationRecords/$count.

Read read
Parameters
domain_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_service_configuration_records_get_count_999b '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_service_configuration_records_get_count_999b '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_domains_delete_service_configuration_records

Delete navigation property serviceConfigurationRecords for domains\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}.

Write write
Parameters
domain_id, domain_dns_record_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_delete_service_configuration_records '{"domain_id":"example_domain_id","domain_dns_record_id":"example_domain_dns_record_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_delete_service_configuration_records '{"domain_id":"example_domain_id","domain_dns_record_id":"example_domain_dns_record_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_domains_get_service_configuration_records

Get serviceConfigurationRecords from domains\n\nOfficial Microsoft Graph v1.0 endpoint: GET /domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}.

Read read
Parameters
domain_id, domain_dns_record_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_get_service_configuration_records '{"domain_id":"example_domain_id","domain_dns_record_id":"example_domain_dns_record_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_get_service_configuration_records '{"domain_id":"example_domain_id","domain_dns_record_id":"example_domain_dns_record_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_domains_update_service_configuration_records

Update the navigation property serviceConfigurationRecords in domains\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}.

Write write
Parameters
domain_id, domain_dns_record_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_update_service_configuration_records '{"domain_id":"example_domain_id","domain_dns_record_id":"example_domain_dns_record_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_update_service_configuration_records '{"domain_id":"example_domain_id","domain_dns_record_id":"example_domain_dns_record_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_domains_list_verification_dns_records

List verificationDnsRecords\n\nOfficial Microsoft Graph v1.0 endpoint: GET /domains/{domain-id}/verificationDnsRecords.

Read read
Parameters
domain_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_list_verification_dns_records '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_list_verification_dns_records '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_domains_create_verification_dns_records

Create new navigation property to verificationDnsRecords for domains\n\nOfficial Microsoft Graph v1.0 endpoint: POST /domains/{domain-id}/verificationDnsRecords.

Write write
Parameters
domain_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_create_verification_dns_records '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_create_verification_dns_records '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_domains_verification_dns_records_get_count_d5a7

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /domains/{domain-id}/verificationDnsRecords/$count.

Read read
Parameters
domain_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_verification_dns_records_get_count_d5a7 '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_verification_dns_records_get_count_d5a7 '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_domains_delete_verification_dns_records

Delete navigation property verificationDnsRecords for domains\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}.

Write write
Parameters
domain_id, domain_dns_record_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_delete_verification_dns_records '{"domain_id":"example_domain_id","domain_dns_record_id":"example_domain_dns_record_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_delete_verification_dns_records '{"domain_id":"example_domain_id","domain_dns_record_id":"example_domain_dns_record_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_domains_get_verification_dns_records

Get verificationDnsRecords from domains\n\nOfficial Microsoft Graph v1.0 endpoint: GET /domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}.

Read read
Parameters
domain_id, domain_dns_record_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_get_verification_dns_records '{"domain_id":"example_domain_id","domain_dns_record_id":"example_domain_dns_record_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_get_verification_dns_records '{"domain_id":"example_domain_id","domain_dns_record_id":"example_domain_dns_record_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_domains_update_verification_dns_records

Update the navigation property verificationDnsRecords in domains\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}.

Write write
Parameters
domain_id, domain_dns_record_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_update_verification_dns_records '{"domain_id":"example_domain_id","domain_dns_record_id":"example_domain_dns_record_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_update_verification_dns_records '{"domain_id":"example_domain_id","domain_dns_record_id":"example_domain_dns_record_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_domains_domain_verify

Invoke action verify\n\nOfficial Microsoft Graph v1.0 endpoint: POST /domains/{domain-id}/verify.

Read read
Parameters
domain_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_domains_domain_verify '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_domains_domain_verify '{"domain_id":"example_domain_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_list_group

List groups\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_list_group '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_list_group '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_create_group

Create group\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_create_group '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_create_group '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_delete_group_by_unique_name

Delete group\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /groups(uniqueName='{uniqueName}').

Write write
Parameters
unique_name, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_delete_group_by_unique_name '{"unique_name":"example_unique_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_delete_group_by_unique_name '{"unique_name":"example_unique_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_get_group_by_unique_name

Get group\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups(uniqueName='{uniqueName}').

Read read
Parameters
unique_name, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_get_group_by_unique_name '{"unique_name":"example_unique_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_get_group_by_unique_name '{"unique_name":"example_unique_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_update_group_by_unique_name

Upsert group\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /groups(uniqueName='{uniqueName}').

Write write
Parameters
unique_name, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_update_group_by_unique_name '{"unique_name":"example_unique_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_update_group_by_unique_name '{"unique_name":"example_unique_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_count_044a

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_count_044a '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_count_044a '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_groups_delta

Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/delta().

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_available_extension_properties

Invoke action getAvailableExtensionProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/getAvailableExtensionProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_by_ids

Invoke action getByIds\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/getByIds.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_groups_validate_properties

Invoke action validateProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/validateProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_delete_group

Delete group\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /groups/{group-id}.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_delete_group '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_delete_group '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_get_group

Get group\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_get_group '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_get_group '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_update_group

Upsert group\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /groups/{group-id}.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_update_group '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_update_group '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_accepted_senders

List acceptedSenders\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/acceptedSenders.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_accepted_senders '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_accepted_senders '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_accepted_senders_get_count_576b

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/acceptedSenders/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_accepted_senders_get_count_576b '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_accepted_senders_get_count_576b '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_delete_ref_accepted_senders

Remove acceptedSender\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /groups/{group-id}/acceptedSenders/$ref.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_delete_ref_accepted_senders '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_delete_ref_accepted_senders '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_ref_accepted_senders

List acceptedSenders\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/acceptedSenders/$ref.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_ref_accepted_senders '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_ref_accepted_senders '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_create_ref_accepted_senders

Create acceptedSender\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/acceptedSenders/$ref.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_create_ref_accepted_senders '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_create_ref_accepted_senders '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_accepted_senders_delete_ref_directory_object

Remove acceptedSender\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /groups/{group-id}/acceptedSenders/{directoryObject-id}/$ref.

Write write
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_accepted_senders_delete_ref_directory_object '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_accepted_senders_delete_ref_directory_object '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_add_favorite

Invoke action addFavorite\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/addFavorite.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_add_favorite '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_add_favorite '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_app_role_assignments

List appRoleAssignments granted to a group\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/appRoleAssignments.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_app_role_assignments '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_app_role_assignments '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_create_app_role_assignments

Grant an appRoleAssignment to a group\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/appRoleAssignments.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_create_app_role_assignments '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_create_app_role_assignments '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_app_role_assignments_get_count_ce16

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/appRoleAssignments/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_app_role_assignments_get_count_ce16 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_app_role_assignments_get_count_ce16 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_delete_app_role_assignments

Delete appRoleAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}.

Write write
Parameters
group_id, app_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_delete_app_role_assignments '{"group_id":"example_group_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_delete_app_role_assignments '{"group_id":"example_group_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_app_role_assignments

Get appRoleAssignments from groups\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}.

Read read
Parameters
group_id, app_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_app_role_assignments '{"group_id":"example_group_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_app_role_assignments '{"group_id":"example_group_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_update_app_role_assignments

Update the navigation property appRoleAssignments in groups\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}.

Write write
Parameters
group_id, app_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_update_app_role_assignments '{"group_id":"example_group_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_update_app_role_assignments '{"group_id":"example_group_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_assign_license

Invoke action assignLicense\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/assignLicense.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_assign_license '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_assign_license '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_check_granted_permissions_for_app

Invoke action checkGrantedPermissionsForApp\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/checkGrantedPermissionsForApp.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_check_granted_permissions_for_app '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_check_granted_permissions_for_app '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_check_member_groups

Invoke action checkMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/checkMemberGroups.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_check_member_groups '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_check_member_groups '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_check_member_objects

Invoke action checkMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/checkMemberObjects.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_check_member_objects '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_check_member_objects '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_created_on_behalf_of

Get createdOnBehalfOf from groups\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/createdOnBehalfOf.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_created_on_behalf_of '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_created_on_behalf_of '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_extensions

Get extensions from groups\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/extensions.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_extensions '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_extensions '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_create_extensions

Create new navigation property to extensions for groups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/extensions.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_create_extensions '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_create_extensions '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_extensions_get_count_e2e0

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/extensions/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_extensions_get_count_e2e0 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_extensions_get_count_e2e0 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_delete_extensions

Delete navigation property extensions for groups\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /groups/{group-id}/extensions/{extension-id}.

Write write
Parameters
group_id, extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_delete_extensions '{"group_id":"example_group_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_delete_extensions '{"group_id":"example_group_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_extensions

Get extensions from groups\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/extensions/{extension-id}.

Read read
Parameters
group_id, extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_extensions '{"group_id":"example_group_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_extensions '{"group_id":"example_group_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_update_extensions

Update the navigation property extensions in groups\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /groups/{group-id}/extensions/{extension-id}.

Write write
Parameters
group_id, extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_update_extensions '{"group_id":"example_group_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_update_extensions '{"group_id":"example_group_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_get_member_groups

Invoke action getMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/getMemberGroups.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_get_member_groups '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_get_member_groups '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_get_member_objects

Invoke action getMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/getMemberObjects.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_get_member_objects '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_get_member_objects '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_group_lifecycle_policies

List groupLifecyclePolicies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/groupLifecyclePolicies.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_group_lifecycle_policies '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_group_lifecycle_policies '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_create_group_lifecycle_policies

Create new navigation property to groupLifecyclePolicies for groups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/groupLifecyclePolicies.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_create_group_lifecycle_policies '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_create_group_lifecycle_policies '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_lifecycle_policies_get_count_ba70

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/groupLifecyclePolicies/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_lifecycle_policies_get_count_ba70 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_lifecycle_policies_get_count_ba70 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_delete_group_lifecycle_policies

Delete navigation property groupLifecyclePolicies for groups\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /groups/{group-id}/groupLifecyclePolicies/{groupLifecyclePolicy-id}.

Write write
Parameters
group_id, group_lifecycle_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_delete_group_lifecycle_policies '{"group_id":"example_group_id","group_lifecycle_policy_id":"example_group_lifecycle_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_delete_group_lifecycle_policies '{"group_id":"example_group_id","group_lifecycle_policy_id":"example_group_lifecycle_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_group_lifecycle_policies

Get groupLifecyclePolicies from groups\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/groupLifecyclePolicies/{groupLifecyclePolicy-id}.

Read read
Parameters
group_id, group_lifecycle_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_group_lifecycle_policies '{"group_id":"example_group_id","group_lifecycle_policy_id":"example_group_lifecycle_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_group_lifecycle_policies '{"group_id":"example_group_id","group_lifecycle_policy_id":"example_group_lifecycle_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_update_group_lifecycle_policies

Update the navigation property groupLifecyclePolicies in groups\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /groups/{group-id}/groupLifecyclePolicies/{groupLifecyclePolicy-id}.

Write write
Parameters
group_id, group_lifecycle_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_update_group_lifecycle_policies '{"group_id":"example_group_id","group_lifecycle_policy_id":"example_group_lifecycle_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_update_group_lifecycle_policies '{"group_id":"example_group_id","group_lifecycle_policy_id":"example_group_lifecycle_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_group_lifecycle_policies_group_lifecycle_policy_add_group

Invoke action addGroup\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/groupLifecyclePolicies/{groupLifecyclePolicy-id}/addGroup.

Write write
Parameters
group_id, group_lifecycle_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_group_lifecycle_policies_group_lifecycle_policy_add_group '{"group_id":"example_group_id","group_lifecycle_policy_id":"example_group_lifecycle_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_group_lifecycle_policies_group_lifecycle_policy_add_group '{"group_id":"example_group_id","group_lifecycle_policy_id":"example_group_lifecycle_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_group_lifecycle_policies_group_lifecycle_policy_remove_group

Invoke action removeGroup\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/groupLifecyclePolicies/{groupLifecyclePolicy-id}/removeGroup.

Write write
Parameters
group_id, group_lifecycle_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_group_lifecycle_policies_group_lifecycle_policy_remove_group '{"group_id":"example_group_id","group_lifecycle_policy_id":"example_group_lifecycle_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_group_lifecycle_policies_group_lifecycle_policy_remove_group '{"group_id":"example_group_id","group_lifecycle_policy_id":"example_group_lifecycle_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_member_of

List group memberships\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/memberOf.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_member_of '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_member_of '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_member_of_get_count_e9c5

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/memberOf/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_member_of_get_count_e9c5 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_member_of_get_count_e9c5 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_member_of_as_administrative_unit

Get the items of type microsoft.graph.administrativeUnit in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/memberOf/graph.administrativeUnit.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_member_of_as_administrative_unit '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_member_of_as_administrative_unit '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_member_of_get_count_as_administrative_unit_4c17

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/memberOf/graph.administrativeUnit/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_member_of_get_count_as_administrative_unit_4c17 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_member_of_get_count_as_administrative_unit_4c17 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_member_of_as_group

List group memberships\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/memberOf/graph.group.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_member_of_as_group '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_member_of_as_group '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_member_of_get_count_as_group_6572

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/memberOf/graph.group/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_member_of_get_count_as_group_6572 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_member_of_get_count_as_group_6572 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_member_of

Get memberOf from groups\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/memberOf/{directoryObject-id}.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_member_of '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_member_of '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_member_of_as_administrative_unit

Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/memberOf/{directoryObject-id}/graph.administrativeUnit.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_member_of_as_administrative_unit '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_member_of_as_administrative_unit '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_member_of_as_group

List group memberships\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/memberOf/{directoryObject-id}/graph.group.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_member_of_as_group '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_member_of_as_group '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_members

List group members\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_members '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_members '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_members_get_count_e1e6

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_members_get_count_e1e6 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_members_get_count_e1e6 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_delete_ref_members

Remove member\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /groups/{group-id}/members/$ref.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_delete_ref_members '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_delete_ref_members '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_ref_members

List group members\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/$ref.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_ref_members '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_ref_members '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_create_ref_members

Add members\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/members/$ref.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_create_ref_members '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_create_ref_members '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_members_as_application

Get the items of type microsoft.graph.application in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/graph.application.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_members_as_application '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_members_as_application '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_application_2734

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/graph.application/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_application_2734 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_members_get_count_as_application_2734 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_members_as_device

Get the items of type microsoft.graph.device in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/graph.device.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_members_as_device '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_members_as_device '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_device_e7a3

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/graph.device/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_device_e7a3 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_members_get_count_as_device_e7a3 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_members_as_group

Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/graph.group.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_members_as_group '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_members_as_group '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_group_86be

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/graph.group/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_group_86be '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_members_get_count_as_group_86be '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_members_as_org_contact

Get the items of type microsoft.graph.orgContact in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/graph.orgContact.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_members_as_org_contact '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_members_as_org_contact '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_org_contact_9781

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/graph.orgContact/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_org_contact_9781 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_members_get_count_as_org_contact_9781 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_members_as_service_principal

Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/graph.servicePrincipal.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_members_as_service_principal '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_members_as_service_principal '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_service_principal_c922

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/graph.servicePrincipal/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_service_principal_c922 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_members_get_count_as_service_principal_c922 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_members_as_user

List group members\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/graph.user.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_members_as_user '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_members_as_user '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_user_b36e

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/graph.user/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_user_b36e '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_members_get_count_as_user_b36e '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_members_delete_ref_directory_object

Remove member\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /groups/{group-id}/members/{directoryObject-id}/$ref.

Write write
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_members_delete_ref_directory_object '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_members_delete_ref_directory_object '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_members_as_application

Get the item of type microsoft.graph.directoryObject as microsoft.graph.application\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/{directoryObject-id}/graph.application.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_members_as_application '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_members_as_application '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_members_as_device

Get the item of type microsoft.graph.directoryObject as microsoft.graph.device\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/{directoryObject-id}/graph.device.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_members_as_device '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_members_as_device '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_members_as_group

Get the item of type microsoft.graph.directoryObject as microsoft.graph.group\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/{directoryObject-id}/graph.group.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_members_as_group '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_members_as_group '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_members_as_org_contact

Get the item of type microsoft.graph.directoryObject as microsoft.graph.orgContact\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/{directoryObject-id}/graph.orgContact.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_members_as_org_contact '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_members_as_org_contact '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_members_as_service_principal

Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/{directoryObject-id}/graph.servicePrincipal.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_members_as_service_principal '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_members_as_service_principal '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_members_as_user

List group members\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/members/{directoryObject-id}/graph.user.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_members_as_user '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_members_as_user '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors

Get membersWithLicenseErrors from groups\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_members_with_license_errors '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_3ebc

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_3ebc '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_members_with_license_errors_get_count_3ebc '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_application

Get the items of type microsoft.graph.application in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/graph.application.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_application '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_members_with_license_errors_as_application '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_application_85ba

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/graph.application/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_application_85ba '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_members_with_license_errors_get_count_as_application_85ba '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_device

Get the items of type microsoft.graph.device in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/graph.device.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_device '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_members_with_license_errors_as_device '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_device_5960

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/graph.device/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_device_5960 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_members_with_license_errors_get_count_as_device_5960 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_group

Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/graph.group.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_group '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_members_with_license_errors_as_group '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_group_bee4

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/graph.group/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_group_bee4 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_members_with_license_errors_get_count_as_group_bee4 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_org_contact

Get the items of type microsoft.graph.orgContact in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/graph.orgContact.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_org_contact '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_members_with_license_errors_as_org_contact '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_org_contact_7eba

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/graph.orgContact/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_org_contact_7eba '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_members_with_license_errors_get_count_as_org_contact_7eba '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_service_principal

Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/graph.servicePrincipal.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_service_principal '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_members_with_license_errors_as_service_principal '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_service_principal_0062

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/graph.servicePrincipal/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_service_principal_0062 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_members_with_license_errors_get_count_as_service_principal_0062 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_user

Get the items of type microsoft.graph.user in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/graph.user.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_user '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_members_with_license_errors_as_user '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_user_0a9e

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/graph.user/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_user_0a9e '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_members_with_license_errors_get_count_as_user_0a9e '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors

Get membersWithLicenseErrors from groups\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_members_with_license_errors '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_application

Get the item of type microsoft.graph.directoryObject as microsoft.graph.application\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/graph.application.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_application '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_members_with_license_errors_as_application '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_device

Get the item of type microsoft.graph.directoryObject as microsoft.graph.device\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/graph.device.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_device '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_members_with_license_errors_as_device '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_group

Get the item of type microsoft.graph.directoryObject as microsoft.graph.group\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/graph.group.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_group '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_members_with_license_errors_as_group '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_org_contact

Get the item of type microsoft.graph.directoryObject as microsoft.graph.orgContact\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/graph.orgContact.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_org_contact '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_members_with_license_errors_as_org_contact '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_service_principal

Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/graph.servicePrincipal.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_service_principal '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_members_with_license_errors_as_service_principal '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_user

Get the item of type microsoft.graph.directoryObject as microsoft.graph.user\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/graph.user.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_user '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_members_with_license_errors_as_user '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_delete_on_premises_sync_behavior

Delete navigation property onPremisesSyncBehavior for groups\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /groups/{group-id}/onPremisesSyncBehavior.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_delete_on_premises_sync_behavior '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_delete_on_premises_sync_behavior '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_on_premises_sync_behavior

Get onPremisesSyncBehavior from groups\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/onPremisesSyncBehavior.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_on_premises_sync_behavior '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_on_premises_sync_behavior '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_update_on_premises_sync_behavior

Update the navigation property onPremisesSyncBehavior in groups\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /groups/{group-id}/onPremisesSyncBehavior.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_update_on_premises_sync_behavior '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_update_on_premises_sync_behavior '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_owners

List group owners\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_owners '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_owners '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_9fe3

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_9fe3 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_owners_get_count_9fe3 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_delete_ref_owners

Remove group owner\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /groups/{group-id}/owners/$ref.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_delete_ref_owners '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_delete_ref_owners '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_ref_owners

List group owners\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/$ref.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_ref_owners '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_ref_owners '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_create_ref_owners

Add owners\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/owners/$ref.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_create_ref_owners '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_create_ref_owners '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_application

Get the items of type microsoft.graph.application in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/graph.application.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_application '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_owners_as_application '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_application_bd83

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/graph.application/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_application_bd83 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_owners_get_count_as_application_bd83 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_device

Get the items of type microsoft.graph.device in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/graph.device.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_device '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_owners_as_device '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_device_2b5b

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/graph.device/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_device_2b5b '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_owners_get_count_as_device_2b5b '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_group

Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/graph.group.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_group '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_owners_as_group '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_group_a694

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/graph.group/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_group_a694 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_owners_get_count_as_group_a694 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_org_contact

Get the items of type microsoft.graph.orgContact in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/graph.orgContact.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_org_contact '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_owners_as_org_contact '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_org_contact_b70b

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/graph.orgContact/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_org_contact_b70b '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_owners_get_count_as_org_contact_b70b '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_service_principal

Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/graph.servicePrincipal.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_service_principal '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_owners_as_service_principal '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_service_principal_8498

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/graph.servicePrincipal/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_service_principal_8498 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_owners_get_count_as_service_principal_8498 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_user

Get the items of type microsoft.graph.user in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/graph.user.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_user '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_owners_as_user '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_user_1c87

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/graph.user/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_user_1c87 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_owners_get_count_as_user_1c87 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_owners_delete_ref_directory_object

Remove group owner\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /groups/{group-id}/owners/{directoryObject-id}/$ref.

Write write
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_owners_delete_ref_directory_object '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_owners_delete_ref_directory_object '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_application

Get the item of type microsoft.graph.directoryObject as microsoft.graph.application\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/{directoryObject-id}/graph.application.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_application '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_owners_as_application '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_device

Get the item of type microsoft.graph.directoryObject as microsoft.graph.device\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/{directoryObject-id}/graph.device.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_device '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_owners_as_device '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_group

Get the item of type microsoft.graph.directoryObject as microsoft.graph.group\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/{directoryObject-id}/graph.group.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_group '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_owners_as_group '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_org_contact

Get the item of type microsoft.graph.directoryObject as microsoft.graph.orgContact\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/{directoryObject-id}/graph.orgContact.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_org_contact '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_owners_as_org_contact '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_service_principal

Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/{directoryObject-id}/graph.servicePrincipal.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_service_principal '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_owners_as_service_principal '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_user

Get the item of type microsoft.graph.directoryObject as microsoft.graph.user\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/owners/{directoryObject-id}/graph.user.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_user '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_owners_as_user '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_permission_grants

List permissionGrants of a group\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/permissionGrants.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_permission_grants '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_permission_grants '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_create_permission_grants

Create new navigation property to permissionGrants for groups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/permissionGrants.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_create_permission_grants '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_create_permission_grants '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_permission_grants_get_count_76af

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/permissionGrants/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_permission_grants_get_count_76af '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_permission_grants_get_count_76af '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_delete_permission_grants

Delete navigation property permissionGrants for groups\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}.

Write write
Parameters
group_id, resource_specific_permission_grant_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_delete_permission_grants '{"group_id":"example_group_id","resource_specific_permission_grant_id":"example_resource_specific_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_delete_permission_grants '{"group_id":"example_group_id","resource_specific_permission_grant_id":"example_resource_specific_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_permission_grants

Get permissionGrants from groups\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}.

Read read
Parameters
group_id, resource_specific_permission_grant_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_permission_grants '{"group_id":"example_group_id","resource_specific_permission_grant_id":"example_resource_specific_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_permission_grants '{"group_id":"example_group_id","resource_specific_permission_grant_id":"example_resource_specific_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_update_permission_grants

Update the navigation property permissionGrants in groups\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}.

Write write
Parameters
group_id, resource_specific_permission_grant_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_update_permission_grants '{"group_id":"example_group_id","resource_specific_permission_grant_id":"example_resource_specific_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_update_permission_grants '{"group_id":"example_group_id","resource_specific_permission_grant_id":"example_resource_specific_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_rejected_senders

List rejectedSenders\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/rejectedSenders.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_rejected_senders '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_rejected_senders '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_rejected_senders_get_count_b188

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/rejectedSenders/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_rejected_senders_get_count_b188 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_rejected_senders_get_count_b188 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_delete_ref_rejected_senders

Remove rejectedSender\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /groups/{group-id}/rejectedSenders/$ref.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_delete_ref_rejected_senders '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_delete_ref_rejected_senders '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_ref_rejected_senders

List rejectedSenders\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/rejectedSenders/$ref.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_ref_rejected_senders '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_ref_rejected_senders '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_create_ref_rejected_senders

Create rejectedSender\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/rejectedSenders/$ref.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_create_ref_rejected_senders '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_create_ref_rejected_senders '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_rejected_senders_delete_ref_directory_object

Remove rejectedSender\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /groups/{group-id}/rejectedSenders/{directoryObject-id}/$ref.

Write write
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_rejected_senders_delete_ref_directory_object '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_rejected_senders_delete_ref_directory_object '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_remove_favorite

Invoke action removeFavorite\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/removeFavorite.

Write write
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_remove_favorite '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_remove_favorite '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_renew

Invoke action renew\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/renew.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_renew '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_renew '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_reset_unseen_count

Invoke action resetUnseenCount\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/resetUnseenCount.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_reset_unseen_count '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_reset_unseen_count '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_restore

Invoke action restore\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/restore.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_restore '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_restore '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_retry_service_provisioning

Invoke action retryServiceProvisioning\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/retryServiceProvisioning.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_retry_service_provisioning '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_retry_service_provisioning '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/serviceProvisioningErrors.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_service_provisioning_errors '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_service_provisioning_errors '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_service_provisioning_errors_get_count_e58f

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/serviceProvisioningErrors/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_service_provisioning_errors_get_count_e58f '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_service_provisioning_errors_get_count_e58f '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_subscribe_by_mail

Invoke action subscribeByMail\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/subscribeByMail.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_subscribe_by_mail '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_subscribe_by_mail '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_transitive_member_of

List group transitive memberOf\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMemberOf.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_transitive_member_of '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_transitive_member_of '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_transitive_member_of_get_count_c756

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMemberOf/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_transitive_member_of_get_count_c756 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_transitive_member_of_get_count_c756 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_transitive_member_of_as_administrative_unit

Get the items of type microsoft.graph.administrativeUnit in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMemberOf/graph.administrativeUnit.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_transitive_member_of_as_administrative_unit '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_transitive_member_of_as_administrative_unit '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_transitive_member_of_get_count_as_administrative_unit_af58

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMemberOf/graph.administrativeUnit/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_transitive_member_of_get_count_as_administrative_unit_af58 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_transitive_member_of_get_count_as_administrative_unit_af58 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_transitive_member_of_as_group

Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMemberOf/graph.group.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_transitive_member_of_as_group '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_transitive_member_of_as_group '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_transitive_member_of_get_count_as_group_4a46

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMemberOf/graph.group/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_transitive_member_of_get_count_as_group_4a46 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_transitive_member_of_get_count_as_group_4a46 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_transitive_member_of

Get transitiveMemberOf from groups\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMemberOf/{directoryObject-id}.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_transitive_member_of '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_transitive_member_of '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_transitive_member_of_as_administrative_unit

Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMemberOf/{directoryObject-id}/graph.administrativeUnit.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_transitive_member_of_as_administrative_unit '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_transitive_member_of_as_administrative_unit '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_transitive_member_of_as_group

Get the item of type microsoft.graph.directoryObject as microsoft.graph.group\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMemberOf/{directoryObject-id}/graph.group.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_transitive_member_of_as_group '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_transitive_member_of_as_group '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members

List group transitive members\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_transitive_members '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_1996

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_1996 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_transitive_members_get_count_1996 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_application

Get the items of type microsoft.graph.application in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/graph.application.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_application '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_transitive_members_as_application '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_application_eafb

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/graph.application/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_application_eafb '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_transitive_members_get_count_as_application_eafb '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_device

Get the items of type microsoft.graph.device in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/graph.device.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_device '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_transitive_members_as_device '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_device_0e55

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/graph.device/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_device_0e55 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_transitive_members_get_count_as_device_0e55 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_group

List group transitive members\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/graph.group.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_group '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_transitive_members_as_group '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_group_d4d7

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/graph.group/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_group_d4d7 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_transitive_members_get_count_as_group_d4d7 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_org_contact

Get the items of type microsoft.graph.orgContact in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/graph.orgContact.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_org_contact '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_transitive_members_as_org_contact '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_org_contact_a89e

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/graph.orgContact/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_org_contact_a89e '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_transitive_members_get_count_as_org_contact_a89e '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_service_principal

Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/graph.servicePrincipal.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_service_principal '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_transitive_members_as_service_principal '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_service_principal_102f

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/graph.servicePrincipal/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_service_principal_102f '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_transitive_members_get_count_as_service_principal_102f '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_user

List group transitive members\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/graph.user.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_user '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_list_transitive_members_as_user '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_user_c600

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/graph.user/$count.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_user_c600 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_transitive_members_get_count_as_user_c600 '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members

Get transitiveMembers from groups\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/{directoryObject-id}.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_transitive_members '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_application

Get the item of type microsoft.graph.directoryObject as microsoft.graph.application\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/{directoryObject-id}/graph.application.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_application '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_transitive_members_as_application '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_device

Get the item of type microsoft.graph.directoryObject as microsoft.graph.device\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/{directoryObject-id}/graph.device.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_device '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_transitive_members_as_device '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_group

List group transitive members\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/{directoryObject-id}/graph.group.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_group '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_transitive_members_as_group '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_org_contact

Get the item of type microsoft.graph.directoryObject as microsoft.graph.orgContact\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/{directoryObject-id}/graph.orgContact.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_org_contact '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_transitive_members_as_org_contact '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_service_principal

Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/{directoryObject-id}/graph.servicePrincipal.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_service_principal '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_transitive_members_as_service_principal '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_user

List group transitive members\n\nOfficial Microsoft Graph v1.0 endpoint: GET /groups/{group-id}/transitiveMembers/{directoryObject-id}/graph.user.

Read read
Parameters
group_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_user '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_get_transitive_members_as_user '{"group_id":"example_group_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_unsubscribe_by_mail

Invoke action unsubscribeByMail\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/unsubscribeByMail.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_unsubscribe_by_mail '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_unsubscribe_by_mail '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_groups_group_validate_properties

Invoke action validateProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /groups/{group-id}/validateProperties.

Read read
Parameters
group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_groups_group_validate_properties '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_groups_group_validate_properties '{"group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_list_authentication_context_class_references

List authenticationContextClassReferences\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/authenticationContextClassReferences.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_list_authentication_context_class_references '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_list_authentication_context_class_references '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_create_authentication_context_class_references

Create new navigation property to authenticationContextClassReferences for identity\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identity/conditionalAccess/authenticationContextClassReferences.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_create_authentication_context_class_references '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_create_authentication_context_class_references '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_context_class_references_get_count_1d40

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/authenticationContextClassReferences/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_context_class_references_get_count_1d40 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_context_class_references_get_count_1d40 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_authentication_context_class_references

Delete authenticationContextClassReference\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}.

Write write
Parameters
authentication_context_class_reference_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_authentication_context_class_references '{"authentication_context_class_reference_id":"example_authentication_context_class_reference_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_delete_authentication_context_class_references '{"authentication_context_class_reference_id":"example_authentication_context_class_reference_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_authentication_context_class_references

Get authenticationContextClassReference\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}.

Read read
Parameters
authentication_context_class_reference_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_authentication_context_class_references '{"authentication_context_class_reference_id":"example_authentication_context_class_reference_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_get_authentication_context_class_references '{"authentication_context_class_reference_id":"example_authentication_context_class_reference_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_authentication_context_class_references

Create or Update authenticationContextClassReference\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}.

Write write
Parameters
authentication_context_class_reference_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_authentication_context_class_references '{"authentication_context_class_reference_id":"example_authentication_context_class_reference_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_update_authentication_context_class_references '{"authentication_context_class_reference_id":"example_authentication_context_class_reference_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_authentication_strength

Delete navigation property authenticationStrength for identity\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identity/conditionalAccess/authenticationStrength.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_authentication_strength '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_delete_authentication_strength '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_authentication_strength

Get authenticationStrength from identity\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/authenticationStrength.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_authentication_strength '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_get_authentication_strength '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_authentication_strength

Update the navigation property authenticationStrength in identity\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identity/conditionalAccess/authenticationStrength.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_authentication_strength '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_update_authentication_strength '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_list_authentication_method_modes

List authenticationMethodModes\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/authenticationStrength/authenticationMethodModes.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_list_authentication_method_modes '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_list_authentication_method_modes '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_create_authentication_method_modes

Create new navigation property to authenticationMethodModes for identity\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identity/conditionalAccess/authenticationStrength/authenticationMethodModes.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_create_authentication_method_modes '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_create_authentication_method_modes '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_authentication_method_modes_get_count_e876

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/authenticationStrength/authenticationMethodModes/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_authentication_method_modes_get_count_e876 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_authentication_method_modes_get_count_e876 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_delete_authentication_method_modes

Delete navigation property authenticationMethodModes for identity\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identity/conditionalAccess/authenticationStrength/authenticationMethodModes/{authenticationMethodModeDetail-id}.

Write write
Parameters
authentication_method_mode_detail_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_delete_authentication_method_modes '{"authentication_method_mode_detail_id":"example_authentication_method_mode_detail_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_delete_authentication_method_modes '{"authentication_method_mode_detail_id":"example_authentication_method_mode_detail_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_get_authentication_method_modes

Get authenticationMethodModes from identity\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/authenticationStrength/authenticationMethodModes/{authenticationMethodModeDetail-id}.

Read read
Parameters
authentication_method_mode_detail_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_get_authentication_method_modes '{"authentication_method_mode_detail_id":"example_authentication_method_mode_detail_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_get_authentication_method_modes '{"authentication_method_mode_detail_id":"example_authentication_method_mode_detail_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_update_authentication_method_modes

Update the navigation property authenticationMethodModes in identity\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identity/conditionalAccess/authenticationStrength/authenticationMethodModes/{authenticationMethodModeDetail-id}.

Write write
Parameters
authentication_method_mode_detail_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_update_authentication_method_modes '{"authentication_method_mode_detail_id":"example_authentication_method_mode_detail_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_update_authentication_method_modes '{"authentication_method_mode_detail_id":"example_authentication_method_mode_detail_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_list_policies

Get policies from identity\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/authenticationStrength/policies.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_list_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_list_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_create_policies

Create new navigation property to policies for identity\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identity/conditionalAccess/authenticationStrength/policies.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_create_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_create_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_get_count_8166

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/authenticationStrength/policies/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_get_count_8166 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_policies_get_count_8166 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_delete_policies

Delete navigation property policies for identity\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy-id}.

Write write
Parameters
authentication_strength_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_delete_policies '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_delete_policies '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_get_policies

Get policies from identity\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy-id}.

Read read
Parameters
authentication_strength_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_get_policies '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_get_policies '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_update_policies

Update the navigation property policies in identity\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy-id}.

Write write
Parameters
authentication_strength_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_update_policies '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_update_policies '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_list_combination_configurations

List combinationConfigurations\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy-id}/combinationConfigurations.

Read read
Parameters
authentication_strength_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_list_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_policies_list_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_create_combination_configurations

Create authenticationCombinationConfiguration\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy-id}/combinationConfigurations.

Write write
Parameters
authentication_strength_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_create_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_policies_create_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_combination_configurations_get_count_64b7

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy-id}/combinationConfigurations/$count.

Read read
Parameters
authentication_strength_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_combination_configurations_get_count_64b7 '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_policies_combination_configurations_get_count_64b7 '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_delete_combination_configurations

Delete authenticationCombinationConfiguration\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}.

Write write
Parameters
authentication_strength_policy_id, authentication_combination_configuration_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_delete_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","authentication_combination_configuration_id":"example_authentication_combination_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_policies_delete_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","authentication_combination_configuration_id":"example_authentication_combination_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_get_combination_configurations

Get authenticationCombinationConfiguration\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}.

Read read
Parameters
authentication_strength_policy_id, authentication_combination_configuration_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_get_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","authentication_combination_configuration_id":"example_authentication_combination_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_policies_get_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","authentication_combination_configuration_id":"example_authentication_combination_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_update_combination_configurations

Update authenticationCombinationConfiguration\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}.

Write write
Parameters
authentication_strength_policy_id, authentication_combination_configuration_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_update_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","authentication_combination_configuration_id":"example_authentication_combination_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_policies_update_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","authentication_combination_configuration_id":"example_authentication_combination_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_authentication_strength_policy_update_allowed_combinations

Invoke action updateAllowedCombinations\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy-id}/updateAllowedCombinations.

Write write
Parameters
authentication_strength_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_authentication_strength_policy_update_allowed_combinations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_policies_authentication_strength_policy_update_allowed_combinations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_authentication_strength_policy_usage

Invoke function usage\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy-id}/usage().

Read read
Parameters
authentication_strength_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_authentication_strength_policy_usage '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_authentication_strength_policies_authentication_strength_policy_usage '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_deleted_items

Delete navigation property deletedItems for identity\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identity/conditionalAccess/deletedItems.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_deleted_items '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_delete_deleted_items '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_deleted_items

Get deletedItems from identity\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/deletedItems.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_deleted_items '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_get_deleted_items '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_deleted_items

Update the navigation property deletedItems in identity\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identity/conditionalAccess/deletedItems.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_deleted_items '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_update_deleted_items '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_list_named_locations

Get namedLocations from identity\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/deletedItems/namedLocations.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_list_named_locations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_deleted_items_list_named_locations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_create_named_locations

Create new navigation property to namedLocations for identity\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identity/conditionalAccess/deletedItems/namedLocations.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_create_named_locations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_deleted_items_create_named_locations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_named_locations_get_count_74ac

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/deletedItems/namedLocations/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_named_locations_get_count_74ac '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_deleted_items_named_locations_get_count_74ac '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_delete_named_locations

Delete navigation property namedLocations for identity\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identity/conditionalAccess/deletedItems/namedLocations/{namedLocation-id}.

Write write
Parameters
named_location_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_delete_named_locations '{"named_location_id":"example_named_location_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_deleted_items_delete_named_locations '{"named_location_id":"example_named_location_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_get_named_locations

Get namedLocations from identity\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/deletedItems/namedLocations/{namedLocation-id}.

Read read
Parameters
named_location_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_get_named_locations '{"named_location_id":"example_named_location_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_deleted_items_get_named_locations '{"named_location_id":"example_named_location_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_update_named_locations

Update the navigation property namedLocations in identity\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identity/conditionalAccess/deletedItems/namedLocations/{namedLocation-id}.

Write write
Parameters
named_location_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_update_named_locations '{"named_location_id":"example_named_location_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_deleted_items_update_named_locations '{"named_location_id":"example_named_location_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_named_locations_named_location_restore

Invoke action restore\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identity/conditionalAccess/deletedItems/namedLocations/{namedLocation-id}/restore.

Read read
Parameters
named_location_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_named_locations_named_location_restore '{"named_location_id":"example_named_location_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_deleted_items_named_locations_named_location_restore '{"named_location_id":"example_named_location_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_list_policies

Get policies from identity\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/deletedItems/policies.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_list_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_deleted_items_list_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_create_policies

Create new navigation property to policies for identity\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identity/conditionalAccess/deletedItems/policies.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_create_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_deleted_items_create_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_policies_get_count_9e9d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/deletedItems/policies/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_policies_get_count_9e9d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_deleted_items_policies_get_count_9e9d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_delete_policies

Delete navigation property policies for identity\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identity/conditionalAccess/deletedItems/policies/{conditionalAccessPolicy-id}.

Write write
Parameters
conditional_access_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_delete_policies '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_deleted_items_delete_policies '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_get_policies

Get policies from identity\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/deletedItems/policies/{conditionalAccessPolicy-id}.

Read read
Parameters
conditional_access_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_get_policies '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_deleted_items_get_policies '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_update_policies

Update the navigation property policies in identity\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identity/conditionalAccess/deletedItems/policies/{conditionalAccessPolicy-id}.

Write write
Parameters
conditional_access_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_update_policies '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_deleted_items_update_policies '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_policies_conditional_access_policy_restore

Invoke action restore\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identity/conditionalAccess/deletedItems/policies/{conditionalAccessPolicy-id}/restore.

Read read
Parameters
conditional_access_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_policies_conditional_access_policy_restore '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_deleted_items_policies_conditional_access_policy_restore '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_evaluate

Invoke action evaluate\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identity/conditionalAccess/evaluate.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_evaluate '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_evaluate '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_list_named_locations

List namedLocations\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/namedLocations.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_list_named_locations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_list_named_locations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_create_named_locations

Create namedLocation\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identity/conditionalAccess/namedLocations.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_create_named_locations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_create_named_locations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_named_locations_get_count_e424

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/namedLocations/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_named_locations_get_count_e424 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_named_locations_get_count_e424 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_named_locations

Delete countryNamedLocation\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identity/conditionalAccess/namedLocations/{namedLocation-id}.

Write write
Parameters
named_location_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_named_locations '{"named_location_id":"example_named_location_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_delete_named_locations '{"named_location_id":"example_named_location_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_named_locations

Get countryNamedLocation\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/namedLocations/{namedLocation-id}.

Read read
Parameters
named_location_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_named_locations '{"named_location_id":"example_named_location_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_get_named_locations '{"named_location_id":"example_named_location_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_named_locations

Update countryNamedLocation\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identity/conditionalAccess/namedLocations/{namedLocation-id}.

Write write
Parameters
named_location_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_named_locations '{"named_location_id":"example_named_location_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_update_named_locations '{"named_location_id":"example_named_location_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_named_locations_named_location_restore

Invoke action restore\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identity/conditionalAccess/namedLocations/{namedLocation-id}/restore.

Read read
Parameters
named_location_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_named_locations_named_location_restore '{"named_location_id":"example_named_location_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_named_locations_named_location_restore '{"named_location_id":"example_named_location_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_list_policies

List policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/policies.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_list_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_list_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_create_policies

Create conditionalAccessPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identity/conditionalAccess/policies.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_create_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_create_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_policies_get_count_608a

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/policies/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_policies_get_count_608a '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_policies_get_count_608a '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_policies

Delete conditionalAccessPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identity/conditionalAccess/policies/{conditionalAccessPolicy-id}.

Write write
Parameters
conditional_access_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_policies '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_delete_policies '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_policies

Get conditionalAccessPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/policies/{conditionalAccessPolicy-id}.

Read read
Parameters
conditional_access_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_policies '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_get_policies '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_policies

Update conditionalaccesspolicy\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identity/conditionalAccess/policies/{conditionalAccessPolicy-id}.

Write write
Parameters
conditional_access_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_policies '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_update_policies '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_policies_conditional_access_policy_restore

Invoke action restore\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identity/conditionalAccess/policies/{conditionalAccessPolicy-id}/restore.

Read read
Parameters
conditional_access_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_policies_conditional_access_policy_restore '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_policies_conditional_access_policy_restore '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_list_templates

List conditionalAccessTemplates\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/templates.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_list_templates '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_list_templates '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_templates_get_count_a96d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/templates/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_templates_get_count_a96d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_templates_get_count_a96d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_templates

Get conditionalAccessTemplate\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identity/conditionalAccess/templates/{conditionalAccessTemplate-id}.

Read read
Parameters
conditional_access_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_templates '{"conditional_access_template_id":"example_conditional_access_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_conditional_access_get_templates '{"conditional_access_template_id":"example_conditional_access_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_identity_governance_get_identity_governance

Get identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_identity_governance_get_identity_governance '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_identity_governance_get_identity_governance '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_identity_governance_update_identity_governance

Update identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_identity_governance_update_identity_governance '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_identity_governance_update_identity_governance '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_delete_access_reviews

Delete navigation property accessReviews for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/accessReviews.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_delete_access_reviews '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_delete_access_reviews '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_get_access_reviews

Get accessReviews from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_get_access_reviews '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_get_access_reviews '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_update_access_reviews

Update the navigation property accessReviews in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/accessReviews.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_update_access_reviews '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_update_access_reviews '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_list_definitions

List definitions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_list_definitions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_list_definitions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_create_definitions

Create definitions\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/accessReviews/definitions.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_create_definitions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_create_definitions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_get_count_6cbe

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_get_count_6cbe '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_get_count_6cbe '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_delete_definitions

Delete accessReviewScheduleDefinition\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}.

Write write
Parameters
access_review_schedule_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_delete_definitions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_delete_definitions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_get_definitions

Get accessReviewScheduleDefinition\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}.

Read read
Parameters
access_review_schedule_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_get_definitions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_get_definitions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_set_definitions

Update accessReviewScheduleDefinition\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}.

Read read
Parameters
access_review_schedule_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_set_definitions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_set_definitions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_list_instances

List instances\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances.

Read read
Parameters
access_review_schedule_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_list_instances '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_list_instances '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_create_instances

Create new navigation property to instances for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances.

Write write
Parameters
access_review_schedule_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_create_instances '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_create_instances '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_count_b022

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/$count.

Read read
Parameters
access_review_schedule_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_count_b022 '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_count_b022 '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/filterByCurrentUser(on='{on}').

Read read
Parameters
access_review_schedule_definition_id, on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_filter_by_current_user '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_filter_by_current_user '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_delete_instances

Delete navigation property instances for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}.

Write write
Parameters
access_review_schedule_definition_id, access_review_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_delete_instances '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_delete_instances '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_get_instances

Get accessReviewInstance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_get_instances '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_get_instances '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_update_instances

Update accessReviewInstance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}.

Write write
Parameters
access_review_schedule_definition_id, access_review_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_update_instances '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_update_instances '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_accept_recommendations

Invoke action acceptRecommendations\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/acceptRecommendations.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_accept_recommendations '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_accept_recommendations '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_apply_decisions

Invoke action applyDecisions\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/applyDecisions.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_apply_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_apply_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_batch_record_decisions

Invoke action batchRecordDecisions\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/batchRecordDecisions.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_batch_record_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_batch_record_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_list_contacted_reviewers

List contactedReviewers\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_list_contacted_reviewers '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_list_contacted_reviewers '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_create_contacted_reviewers

Create new navigation property to contactedReviewers for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers.

Write write
Parameters
access_review_schedule_definition_id, access_review_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_create_contacted_reviewers '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_create_contacted_reviewers '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_contacted_reviewers_get_count_fe5f

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/$count.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_contacted_reviewers_get_count_fe5f '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_contacted_reviewers_get_count_fe5f '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_delete_contacted_reviewers

Delete navigation property contactedReviewers for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/{accessReviewReviewer-id}.

Write write
Parameters
access_review_schedule_definition_id, access_review_instance_id, access_review_reviewer_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_delete_contacted_reviewers '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_reviewer_id":"example_access_review_reviewer_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_delete_contacted_reviewers '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_reviewer_id":"example_access_review_reviewer_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_contacted_reviewers

Get contactedReviewers from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/{accessReviewReviewer-id}.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, access_review_reviewer_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_contacted_reviewers '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_reviewer_id":"example_access_review_reviewer_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_contacted_reviewers '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_reviewer_id":"example_access_review_reviewer_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_update_contacted_reviewers

Update the navigation property contactedReviewers in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/{accessReviewReviewer-id}.

Write write
Parameters
access_review_schedule_definition_id, access_review_instance_id, access_review_reviewer_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_update_contacted_reviewers '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_reviewer_id":"example_access_review_reviewer_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_update_contacted_reviewers '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_reviewer_id":"example_access_review_reviewer_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_list_decisions

List decisions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_list_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_list_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_create_decisions

Create new navigation property to decisions for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions.

Write write
Parameters
access_review_schedule_definition_id, access_review_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_create_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_create_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_decisions_get_count_c10a

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/$count.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_decisions_get_count_c10a '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_decisions_get_count_c10a '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_decisions_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/filterByCurrentUser(on='{on}').

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_decisions_filter_by_current_user '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_decisions_filter_by_current_user '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_delete_decisions

Delete navigation property decisions for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}.

Write write
Parameters
access_review_schedule_definition_id, access_review_instance_id, access_review_instance_decision_item_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_delete_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_instance_decision_item_id":"example_access_review_instance_decision_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_delete_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_instance_decision_item_id":"example_access_review_instance_decision_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_decisions

Get accessReviewInstanceDecisionItem\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, access_review_instance_decision_item_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_instance_decision_item_id":"example_access_review_instance_decision_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_instance_decision_item_id":"example_access_review_instance_decision_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_update_decisions

Update the navigation property decisions in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}.

Write write
Parameters
access_review_schedule_definition_id, access_review_instance_id, access_review_instance_decision_item_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_update_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_instance_decision_item_id":"example_access_review_instance_decision_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_update_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_instance_decision_item_id":"example_access_review_instance_decision_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_reset_decisions

Invoke action resetDecisions\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/resetDecisions.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_reset_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_reset_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_send_reminder

Invoke action sendReminder\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/sendReminder.

Write write
Parameters
access_review_schedule_definition_id, access_review_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_send_reminder '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_send_reminder '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_list_stages

List stages (of an access review)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_list_stages '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_list_stages '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_create_stages

Create new navigation property to stages for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages.

Write write
Parameters
access_review_schedule_definition_id, access_review_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_create_stages '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_create_stages '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_get_count_f2c5

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/$count.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_get_count_f2c5 '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_get_count_f2c5 '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stages_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/filterByCurrentUser(on='{on}').

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stages_filter_by_current_user '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stages_filter_by_current_user '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_delete_stages

Delete navigation property stages for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}.

Write write
Parameters
access_review_schedule_definition_id, access_review_instance_id, access_review_stage_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_delete_stages '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_delete_stages '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_stages

Get accessReviewStage\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, access_review_stage_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_stages '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_stages '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_update_stages

Update accessReviewStage\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}.

Write write
Parameters
access_review_schedule_definition_id, access_review_instance_id, access_review_stage_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_update_stages '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_update_stages '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_list_decisions

List decisions (from a multi-stage access review)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, access_review_stage_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_list_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_list_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_create_decisions

Create new navigation property to decisions for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions.

Write write
Parameters
access_review_schedule_definition_id, access_review_instance_id, access_review_stage_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_create_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_create_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_decisions_get_count_35e1

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/$count.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, access_review_stage_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_decisions_get_count_35e1 '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_decisions_get_count_35e1 '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stages_access_review_stage_decisions_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/filterByCurrentUser(on='{on}').

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, access_review_stage_id, on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stages_access_review_stage_decisions_filter_by_current_user '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stages_access_review_stage_decisions_filter_by_current_user '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_delete_decisions

Delete navigation property decisions for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}.

Write write
Parameters
access_review_schedule_definition_id, access_review_instance_id, access_review_stage_id, access_review_instance_decision_item_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_delete_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","access_review_instance_decision_item_id":"example_access_review_instance_decision_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_delete_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","access_review_instance_decision_item_id":"example_access_review_instance_decision_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_get_decisions

Get accessReviewInstanceDecisionItem\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, access_review_stage_id, access_review_instance_decision_item_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_get_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","access_review_instance_decision_item_id":"example_access_review_instance_decision_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_get_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","access_review_instance_decision_item_id":"example_access_review_instance_decision_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_update_decisions

Update accessReviewInstanceDecisionItem\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}.

Write write
Parameters
access_review_schedule_definition_id, access_review_instance_id, access_review_stage_id, access_review_instance_decision_item_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_update_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","access_review_instance_decision_item_id":"example_access_review_instance_decision_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_update_decisions '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","access_review_instance_decision_item_id":"example_access_review_instance_decision_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stages_access_review_stage_stop

Invoke action stop\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/stop.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, access_review_stage_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stages_access_review_stage_stop '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stages_access_review_stage_stop '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","access_review_stage_id":"example_access_review_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stop

Invoke action stop\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stop.

Read read
Parameters
access_review_schedule_definition_id, access_review_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stop '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stop '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","access_review_instance_id":"example_access_review_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_stop

Invoke action stop\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/stop.

Read read
Parameters
access_review_schedule_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_stop '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_stop '{"access_review_schedule_definition_id":"example_access_review_schedule_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_list_history_definitions

List historyDefinitions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/historyDefinitions.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_list_history_definitions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_list_history_definitions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_create_history_definitions

Create historyDefinitions\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/accessReviews/historyDefinitions.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_create_history_definitions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_create_history_definitions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_get_count_6aff

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/historyDefinitions/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_get_count_6aff '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_history_definitions_get_count_6aff '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_delete_history_definitions

Delete navigation property historyDefinitions for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}.

Write write
Parameters
access_review_history_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_delete_history_definitions '{"access_review_history_definition_id":"example_access_review_history_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_delete_history_definitions '{"access_review_history_definition_id":"example_access_review_history_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_get_history_definitions

Get accessReviewHistoryDefinition\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}.

Read read
Parameters
access_review_history_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_get_history_definitions '{"access_review_history_definition_id":"example_access_review_history_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_get_history_definitions '{"access_review_history_definition_id":"example_access_review_history_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_update_history_definitions

Update the navigation property historyDefinitions in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}.

Write write
Parameters
access_review_history_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_update_history_definitions '{"access_review_history_definition_id":"example_access_review_history_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_update_history_definitions '{"access_review_history_definition_id":"example_access_review_history_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_list_instances

List instances (of an accessReviewHistoryDefinition)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances.

Read read
Parameters
access_review_history_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_list_instances '{"access_review_history_definition_id":"example_access_review_history_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_history_definitions_list_instances '{"access_review_history_definition_id":"example_access_review_history_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_create_instances

Create new navigation property to instances for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances.

Write write
Parameters
access_review_history_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_create_instances '{"access_review_history_definition_id":"example_access_review_history_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_history_definitions_create_instances '{"access_review_history_definition_id":"example_access_review_history_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_instances_get_count_cbe7

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/$count.

Read read
Parameters
access_review_history_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_instances_get_count_cbe7 '{"access_review_history_definition_id":"example_access_review_history_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_history_definitions_instances_get_count_cbe7 '{"access_review_history_definition_id":"example_access_review_history_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_delete_instances

Delete navigation property instances for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}.

Write write
Parameters
access_review_history_definition_id, access_review_history_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_delete_instances '{"access_review_history_definition_id":"example_access_review_history_definition_id","access_review_history_instance_id":"example_access_review_history_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_history_definitions_delete_instances '{"access_review_history_definition_id":"example_access_review_history_definition_id","access_review_history_instance_id":"example_access_review_history_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_get_instances

Get instances from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}.

Read read
Parameters
access_review_history_definition_id, access_review_history_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_get_instances '{"access_review_history_definition_id":"example_access_review_history_definition_id","access_review_history_instance_id":"example_access_review_history_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_history_definitions_get_instances '{"access_review_history_definition_id":"example_access_review_history_definition_id","access_review_history_instance_id":"example_access_review_history_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_update_instances

Update the navigation property instances in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}.

Write write
Parameters
access_review_history_definition_id, access_review_history_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_update_instances '{"access_review_history_definition_id":"example_access_review_history_definition_id","access_review_history_instance_id":"example_access_review_history_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_history_definitions_update_instances '{"access_review_history_definition_id":"example_access_review_history_definition_id","access_review_history_instance_id":"example_access_review_history_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_access_review_history_definition_instances_access_review_history_instance_generate_download_uri

Invoke action generateDownloadUri\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}/generateDownloadUri.

Read read
Parameters
access_review_history_definition_id, access_review_history_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_access_review_history_definition_instances_access_review_history_instance_generate_download_uri '{"access_review_history_definition_id":"example_access_review_history_definition_id","access_review_history_instance_id":"example_access_review_history_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_access_reviews_history_definitions_access_review_history_definition_instances_access_review_history_instance_generate_download_uri '{"access_review_history_definition_id":"example_access_review_history_definition_id","access_review_history_instance_id":"example_access_review_history_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_delete_app_consent

Delete navigation property appConsent for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/appConsent.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_delete_app_consent '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_delete_app_consent '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_get_app_consent

Get appConsent from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/appConsent.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_get_app_consent '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_get_app_consent '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_update_app_consent

Update the navigation property appConsent in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/appConsent.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_update_app_consent '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_update_app_consent '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_list_app_consent_requests

List appConsentRequests\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/appConsent/appConsentRequests.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_list_app_consent_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_list_app_consent_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_create_app_consent_requests

Create new navigation property to appConsentRequests for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/appConsent/appConsentRequests.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_create_app_consent_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_create_app_consent_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_get_count_d9b5

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/appConsent/appConsentRequests/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_get_count_d9b5 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_app_consent_requests_get_count_d9b5 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/appConsent/appConsentRequests/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_app_consent_requests_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_delete_app_consent_requests

Delete navigation property appConsentRequests for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}.

Write write
Parameters
app_consent_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_delete_app_consent_requests '{"app_consent_request_id":"example_app_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_delete_app_consent_requests '{"app_consent_request_id":"example_app_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_get_app_consent_requests

Get appConsentRequest\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}.

Read read
Parameters
app_consent_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_get_app_consent_requests '{"app_consent_request_id":"example_app_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_get_app_consent_requests '{"app_consent_request_id":"example_app_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_update_app_consent_requests

Update the navigation property appConsentRequests in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}.

Write write
Parameters
app_consent_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_update_app_consent_requests '{"app_consent_request_id":"example_app_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_update_app_consent_requests '{"app_consent_request_id":"example_app_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_list_user_consent_requests

List userConsentRequests\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests.

Read read
Parameters
app_consent_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_list_user_consent_requests '{"app_consent_request_id":"example_app_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_app_consent_requests_list_user_consent_requests '{"app_consent_request_id":"example_app_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_create_user_consent_requests

Create new navigation property to userConsentRequests for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests.

Write write
Parameters
app_consent_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_create_user_consent_requests '{"app_consent_request_id":"example_app_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_app_consent_requests_create_user_consent_requests '{"app_consent_request_id":"example_app_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_get_count_cf9d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/$count.

Read read
Parameters
app_consent_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_get_count_cf9d '{"app_consent_request_id":"example_app_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_get_count_cf9d '{"app_consent_request_id":"example_app_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_app_consent_request_user_consent_requests_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/filterByCurrentUser(on='{on}').

Read read
Parameters
app_consent_request_id, on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_app_consent_request_user_consent_requests_filter_by_current_user '{"app_consent_request_id":"example_app_consent_request_id","on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_app_consent_requests_app_consent_request_user_consent_requests_filter_by_current_user '{"app_consent_request_id":"example_app_consent_request_id","on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_delete_user_consent_requests

Delete navigation property userConsentRequests for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}.

Write write
Parameters
app_consent_request_id, user_consent_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_delete_user_consent_requests '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_app_consent_requests_delete_user_consent_requests '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_get_user_consent_requests

Get userConsentRequest\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}.

Read read
Parameters
app_consent_request_id, user_consent_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_get_user_consent_requests '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_app_consent_requests_get_user_consent_requests '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_update_user_consent_requests

Update the navigation property userConsentRequests in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}.

Write write
Parameters
app_consent_request_id, user_consent_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_update_user_consent_requests '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_app_consent_requests_update_user_consent_requests '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_delete_approval

Delete navigation property approval for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval.

Write write
Parameters
app_consent_request_id, user_consent_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_delete_approval '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_delete_approval '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_get_approval

Get approval from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval.

Read read
Parameters
app_consent_request_id, user_consent_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_get_approval '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_get_approval '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_update_approval

Update the navigation property approval in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval.

Write write
Parameters
app_consent_request_id, user_consent_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_update_approval '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_update_approval '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_approval_list_stages

Get stages from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/stages.

Read read
Parameters
app_consent_request_id, user_consent_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_approval_list_stages '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_approval_list_stages '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_approval_create_stages

Create new navigation property to stages for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/stages.

Write write
Parameters
app_consent_request_id, user_consent_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_approval_create_stages '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_approval_create_stages '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_approval_stages_get_count_3a21

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/stages/$count.

Read read
Parameters
app_consent_request_id, user_consent_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_approval_stages_get_count_3a21 '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_approval_stages_get_count_3a21 '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_approval_delete_stages

Delete navigation property stages for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/stages/{approvalStage-id}.

Write write
Parameters
app_consent_request_id, user_consent_request_id, approval_stage_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_approval_delete_stages '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","approval_stage_id":"example_approval_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_approval_delete_stages '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","approval_stage_id":"example_approval_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_approval_get_stages

Get stages from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/stages/{approvalStage-id}.

Read read
Parameters
app_consent_request_id, user_consent_request_id, approval_stage_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_approval_get_stages '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","approval_stage_id":"example_approval_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_approval_get_stages '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","approval_stage_id":"example_approval_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_approval_update_stages

Update the navigation property stages in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/stages/{approvalStage-id}.

Write write
Parameters
app_consent_request_id, user_consent_request_id, approval_stage_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_approval_update_stages '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","approval_stage_id":"example_approval_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_app_consent_app_consent_requests_user_consent_requests_approval_update_stages '{"app_consent_request_id":"example_app_consent_request_id","user_consent_request_id":"example_user_consent_request_id","approval_stage_id":"example_approval_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_delete_entitlement_management

Delete navigation property entitlementManagement for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_delete_entitlement_management '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_delete_entitlement_management '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_get_entitlement_management

Get entitlementManagement from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_get_entitlement_management '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_get_entitlement_management '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_update_entitlement_management

Update the navigation property entitlementManagement in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_update_entitlement_management '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_update_entitlement_management '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_access_package_assignment_approvals

Get approval\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_access_package_assignment_approvals '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_list_access_package_assignment_approvals '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_access_package_assignment_approvals

Create new navigation property to accessPackageAssignmentApprovals for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_access_package_assignment_approvals '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_create_access_package_assignment_approvals '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_get_count_ac9b

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_get_count_ac9b '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_get_count_ac9b '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_access_package_assignment_approvals

Delete navigation property accessPackageAssignmentApprovals for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}.

Write write
Parameters
approval_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_access_package_assignment_approvals '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_delete_access_package_assignment_approvals '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_access_package_assignment_approvals

Get approval\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}.

Read read
Parameters
approval_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_access_package_assignment_approvals '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_get_access_package_assignment_approvals '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_access_package_assignment_approvals

Update the navigation property accessPackageAssignmentApprovals in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}.

Write write
Parameters
approval_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_access_package_assignment_approvals '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_update_access_package_assignment_approvals '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_list_stages

List approval stages\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages.

Read read
Parameters
approval_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_list_stages '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_list_stages '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_create_stages

Create new navigation property to stages for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages.

Write write
Parameters
approval_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_create_stages '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_create_stages '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_stages_get_count_0bb2

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages/$count.

Read read
Parameters
approval_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_stages_get_count_0bb2 '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_stages_get_count_0bb2 '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_delete_stages

Delete navigation property stages for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages/{approvalStage-id}.

Write write
Parameters
approval_id, approval_stage_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_delete_stages '{"approval_id":"example_approval_id","approval_stage_id":"example_approval_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_delete_stages '{"approval_id":"example_approval_id","approval_stage_id":"example_approval_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_get_stages

Get approvalStage\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages/{approvalStage-id}.

Read read
Parameters
approval_id, approval_stage_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_get_stages '{"approval_id":"example_approval_id","approval_stage_id":"example_approval_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_get_stages '{"approval_id":"example_approval_id","approval_stage_id":"example_approval_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_update_stages

Update approvalStage\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages/{approvalStage-id}.

Write write
Parameters
approval_id, approval_stage_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_update_stages '{"approval_id":"example_approval_id","approval_stage_id":"example_approval_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_update_stages '{"approval_id":"example_approval_id","approval_stage_id":"example_approval_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_access_packages

List accessPackages\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_access_packages '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_list_access_packages '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_access_packages

Create accessPackage\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackages.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_access_packages '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_create_access_packages '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_count_87ea

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_count_87ea '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_count_87ea '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_access_packages

Delete accessPackage\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}.

Write write
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_access_packages '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_delete_access_packages '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_access_packages

Get accessPackage\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}.

Read read
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_access_packages '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_get_access_packages '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_access_packages

Update accessPackage\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}.

Write write
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_access_packages '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_update_access_packages '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_access_packages_incompatible_with

List accessPackagesIncompatibleWith\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackagesIncompatibleWith.

Read read
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_access_packages_incompatible_with '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_access_packages_incompatible_with '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_packages_incompatible_with_get_count_2183

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackagesIncompatibleWith/$count.

Read read
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_packages_incompatible_with_get_count_2183 '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_packages_incompatible_with_get_count_2183 '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_access_packages_incompatible_with

Get accessPackagesIncompatibleWith from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackagesIncompatibleWith/{accessPackage-id1}.

Read read
Parameters
access_package_id, access_package_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_access_packages_incompatible_with '{"access_package_id":"example_access_package_id","access_package_id1":"example_access_package_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_access_packages_incompatible_with '{"access_package_id":"example_access_package_id","access_package_id1":"example_access_package_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_assignment_policies

Get assignmentPolicies from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies.

Read read
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_assignment_policies '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_assignment_policies '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_assignment_policies

Create new navigation property to assignmentPolicies for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies.

Write write
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_assignment_policies '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_assignment_policies '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_count_96f1

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/$count.

Read read
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_count_96f1 '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_count_96f1 '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_assignment_policies

Delete navigation property assignmentPolicies for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}.

Write write
Parameters
access_package_id, access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_assignment_policies '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_assignment_policies '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_assignment_policies

Get assignmentPolicies from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}.

Read read
Parameters
access_package_id, access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_assignment_policies '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_assignment_policies '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_update_assignment_policies

Update the navigation property assignmentPolicies in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}.

Write write
Parameters
access_package_id, access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_update_assignment_policies '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_update_assignment_policies '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_access_package

Get accessPackage from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage.

Read read
Parameters
access_package_id, access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_access_package '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_access_package '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_catalog

Get catalog from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}/catalog.

Read read
Parameters
access_package_id, access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_catalog '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_catalog '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_list_custom_extension_stage_settings

Get customExtensionStageSettings from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings.

Read read
Parameters
access_package_id, access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_list_custom_extension_stage_settings '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_list_custom_extension_stage_settings '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_create_custom_extension_stage_settings

Create new navigation property to customExtensionStageSettings for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings.

Write write
Parameters
access_package_id, access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_create_custom_extension_stage_settings '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_create_custom_extension_stage_settings '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_custom_extension_stage_settings_get_count_a366

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/$count.

Read read
Parameters
access_package_id, access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_custom_extension_stage_settings_get_count_a366 '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_custom_extension_stage_settings_get_count_a366 '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_delete_custom_extension_stage_settings

Delete navigation property customExtensionStageSettings for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}.

Write write
Parameters
access_package_id, access_package_assignment_policy_id, custom_extension_stage_setting_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_delete_custom_extension_stage_settings '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","custom_extension_stage_setting_id":"example_custom_extension_stage_setting_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_delete_custom_extension_stage_settings '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","custom_extension_stage_setting_id":"example_custom_extension_stage_setting_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_custom_extension_stage_settings

Get customExtensionStageSettings from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}.

Read read
Parameters
access_package_id, access_package_assignment_policy_id, custom_extension_stage_setting_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_custom_extension_stage_settings '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","custom_extension_stage_setting_id":"example_custom_extension_stage_setting_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_custom_extension_stage_settings '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","custom_extension_stage_setting_id":"example_custom_extension_stage_setting_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_update_custom_extension_stage_settings

Update the navigation property customExtensionStageSettings in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}.

Write write
Parameters
access_package_id, access_package_assignment_policy_id, custom_extension_stage_setting_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_update_custom_extension_stage_settings '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","custom_extension_stage_setting_id":"example_custom_extension_stage_setting_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_update_custom_extension_stage_settings '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","custom_extension_stage_setting_id":"example_custom_extension_stage_setting_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_custom_extension_stage_settings_get_custom_extension

Get customExtension from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}/customExtension.

Read read
Parameters
access_package_id, access_package_assignment_policy_id, custom_extension_stage_setting_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_custom_extension_stage_settings_get_custom_extension '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","custom_extension_stage_setting_id":"example_custom_extension_stage_setting_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_custom_extension_stage_settings_get_custom_extension '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","custom_extension_stage_setting_id":"example_custom_extension_stage_setting_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_list_questions

Get questions from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions.

Read read
Parameters
access_package_id, access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_list_questions '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_list_questions '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_create_questions

Create new navigation property to questions for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions.

Write write
Parameters
access_package_id, access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_create_questions '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_create_questions '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_questions_get_count_00ce

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions/$count.

Read read
Parameters
access_package_id, access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_questions_get_count_00ce '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_questions_get_count_00ce '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_delete_questions

Delete navigation property questions for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions/{accessPackageQuestion-id}.

Write write
Parameters
access_package_id, access_package_assignment_policy_id, access_package_question_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_delete_questions '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","access_package_question_id":"example_access_package_question_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_delete_questions '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","access_package_question_id":"example_access_package_question_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_questions

Get questions from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions/{accessPackageQuestion-id}.

Read read
Parameters
access_package_id, access_package_assignment_policy_id, access_package_question_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_questions '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","access_package_question_id":"example_access_package_question_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_questions '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","access_package_question_id":"example_access_package_question_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_update_questions

Update the navigation property questions in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions/{accessPackageQuestion-id}.

Write write
Parameters
access_package_id, access_package_assignment_policy_id, access_package_question_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_update_questions '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","access_package_question_id":"example_access_package_question_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_update_questions '{"access_package_id":"example_access_package_id","access_package_assignment_policy_id":"example_access_package_assignment_policy_id","access_package_question_id":"example_access_package_question_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_catalog

Get catalog from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/catalog.

Read read
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_catalog '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_catalog '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_get_applicable_policy_requirements

Invoke action getApplicablePolicyRequirements\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/getApplicablePolicyRequirements.

Read read
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_get_applicable_policy_requirements '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_get_applicable_policy_requirements '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_incompatible_access_packages

List incompatibleAccessPackages\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages.

Read read
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_incompatible_access_packages '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_incompatible_access_packages '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_access_packages_get_count_c2c1

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$count.

Read read
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_access_packages_get_count_c2c1 '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_access_packages_get_count_c2c1 '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_ref_incompatible_access_packages

Remove accessPackage from incompatibleAccessPackages\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$ref.

Write write
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_ref_incompatible_access_packages '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_ref_incompatible_access_packages '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_ref_incompatible_access_packages

List incompatibleAccessPackages\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$ref.

Read read
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_ref_incompatible_access_packages '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_ref_incompatible_access_packages '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_ref_incompatible_access_packages

Add accessPackage to incompatibleAccessPackages\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$ref.

Write write
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_ref_incompatible_access_packages '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_ref_incompatible_access_packages '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_access_packages_delete_ref_access_package

Remove accessPackage from incompatibleAccessPackages\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/{accessPackage-id1}/$ref.

Write write
Parameters
access_package_id, access_package_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_access_packages_delete_ref_access_package '{"access_package_id":"example_access_package_id","access_package_id1":"example_access_package_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_access_packages_delete_ref_access_package '{"access_package_id":"example_access_package_id","access_package_id1":"example_access_package_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_incompatible_groups

List incompatibleGroups\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups.

Read read
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_incompatible_groups '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_incompatible_groups '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_get_count_30b4

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/$count.

Read read
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_get_count_30b4 '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_get_count_30b4 '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_ref_incompatible_groups

Remove group from incompatibleGroups\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/$ref.

Write write
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_ref_incompatible_groups '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_ref_incompatible_groups '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_ref_incompatible_groups

List incompatibleGroups\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/$ref.

Read read
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_ref_incompatible_groups '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_ref_incompatible_groups '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_ref_incompatible_groups

Add group to incompatibleGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/$ref.

Write write
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_ref_incompatible_groups '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_ref_incompatible_groups '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_delete_ref_group

Remove group from incompatibleGroups\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/{group-id}/$ref.

Write write
Parameters
access_package_id, group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_delete_ref_group '{"access_package_id":"example_access_package_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_delete_ref_group '{"access_package_id":"example_access_package_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/{group-id}/serviceProvisioningErrors.

Read read
Parameters
access_package_id, group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_list_service_provisioning_errors '{"access_package_id":"example_access_package_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_list_service_provisioning_errors '{"access_package_id":"example_access_package_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_service_provisioning_errors_get_count_072a

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/{group-id}/serviceProvisioningErrors/$count.

Read read
Parameters
access_package_id, group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_service_provisioning_errors_get_count_072a '{"access_package_id":"example_access_package_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_service_provisioning_errors_get_count_072a '{"access_package_id":"example_access_package_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_resource_role_scopes

Get resourceRoleScopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes.

Read read
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_resource_role_scopes '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_resource_role_scopes '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_resource_role_scopes

Create resourceRoleScope\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes.

Write write
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_resource_role_scopes '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_resource_role_scopes '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_get_count_aec9

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/$count.

Read read
Parameters
access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_get_count_aec9 '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_get_count_aec9 '{"access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_resource_role_scopes

Remove resourceRoleScope from an accessPackage\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_resource_role_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_resource_role_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_resource_role_scopes

Get resourceRoleScopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_resource_role_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_resource_role_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_update_resource_role_scopes

Update the navigation property resourceRoleScopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_update_resource_role_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_update_resource_role_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_delete_role

Delete navigation property role for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_delete_role '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_delete_role '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_get_role

Get role from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_get_role '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_get_role '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_update_role

Update the navigation property role in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_update_role '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_update_role '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_delete_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_delete_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_get_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_get_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_update_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_update_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/environment.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_get_environment '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_get_environment '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_role_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/refresh.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_role_resource_refresh '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_role_resource_refresh '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_list_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_list_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_create_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_create_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_roles_get_count_43af

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles/$count.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_roles_get_count_43af '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_roles_get_count_43af '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_delete_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_delete_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_get_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_get_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_update_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_update_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_list_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_list_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_create_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_create_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_get_count_a183

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/$count.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_get_count_a183 '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_get_count_a183 '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_delete_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_delete_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_get_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_get_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_update_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_update_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_delete_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_delete_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_get_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_get_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_update_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_update_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/environment.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_get_environment '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_get_environment '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_role_resource_scopes_access_package_resource_scope_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/refresh.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_role_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_role_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_list_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_list_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_create_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_create_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_roles_get_count_29b9

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles/$count.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_roles_get_count_29b9 '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_roles_get_count_29b9 '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_delete_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_delete_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_get_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_get_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_update_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_update_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_delete_scope

Delete navigation property scope for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_delete_scope '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_delete_scope '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_get_scope

Get scope from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_get_scope '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_get_scope '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_update_scope

Update the navigation property scope in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_update_scope '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_update_scope '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_delete_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_delete_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_get_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_get_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_update_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_update_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/environment.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_get_environment '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_get_environment '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_scope_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/refresh.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_scope_resource_refresh '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_scope_resource_refresh '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_list_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_list_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_create_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_create_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_get_count_e406

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/$count.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_get_count_e406 '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_get_count_e406 '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_delete_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_delete_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_get_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_get_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_update_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_update_roles '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_delete_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_delete_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_get_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_get_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_update_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_update_resource '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/environment.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_get_environment '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_get_environment '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_scope_resource_roles_access_package_resource_role_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/refresh.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_scope_resource_roles_access_package_resource_role_resource_refresh '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_scope_resource_roles_access_package_resource_role_resource_refresh '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_list_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_list_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_create_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_create_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_scopes_get_count_85f9

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes/$count.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_scopes_get_count_85f9 '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_scopes_get_count_85f9 '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_delete_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_delete_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_get_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_get_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_update_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_update_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_list_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_list_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_create_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_create_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_scopes_get_count_441e

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes/$count.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_scopes_get_count_441e '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_scopes_get_count_441e '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_delete_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_delete_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_get_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_get_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_id, access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_update_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_update_scopes '{"access_package_id":"example_access_package_id","access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_assignment_policies

List assignmentPolicies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentPolicies.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_assignment_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_list_assignment_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_assignment_policies

Create assignmentPolicies\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/assignmentPolicies.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_assignment_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_create_assignment_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_count_7f35

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentPolicies/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_count_7f35 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_count_7f35 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_assignment_policies

Delete accessPackageAssignmentPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}.

Write write
Parameters
access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_assignment_policies '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_delete_assignment_policies '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_assignment_policies

Get accessPackageAssignmentPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}.

Read read
Parameters
access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_assignment_policies '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_get_assignment_policies '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_set_assignment_policies

Update accessPackageAssignmentPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}.

Read read
Parameters
access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_set_assignment_policies '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_set_assignment_policies '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_access_package

Get accessPackage from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage.

Read read
Parameters
access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_access_package '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_access_package '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_catalog

Get catalog from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/catalog.

Read read
Parameters
access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_catalog '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_catalog '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_list_custom_extension_stage_settings

Get customExtensionStageSettings from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings.

Read read
Parameters
access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_list_custom_extension_stage_settings '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_list_custom_extension_stage_settings '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_create_custom_extension_stage_settings

Create new navigation property to customExtensionStageSettings for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings.

Write write
Parameters
access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_create_custom_extension_stage_settings '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_create_custom_extension_stage_settings '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_custom_extension_stage_settings_get_count_551d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/$count.

Read read
Parameters
access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_custom_extension_stage_settings_get_count_551d '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_custom_extension_stage_settings_get_count_551d '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_delete_custom_extension_stage_settings

Delete navigation property customExtensionStageSettings for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}.

Write write
Parameters
access_package_assignment_policy_id, custom_extension_stage_setting_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_delete_custom_extension_stage_settings '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","custom_extension_stage_setting_id":"example_custom_extension_stage_setting_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_delete_custom_extension_stage_settings '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","custom_extension_stage_setting_id":"example_custom_extension_stage_setting_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_custom_extension_stage_settings

Get customExtensionStageSettings from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}.

Read read
Parameters
access_package_assignment_policy_id, custom_extension_stage_setting_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_custom_extension_stage_settings '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","custom_extension_stage_setting_id":"example_custom_extension_stage_setting_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_custom_extension_stage_settings '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","custom_extension_stage_setting_id":"example_custom_extension_stage_setting_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_update_custom_extension_stage_settings

Update the navigation property customExtensionStageSettings in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}.

Write write
Parameters
access_package_assignment_policy_id, custom_extension_stage_setting_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_update_custom_extension_stage_settings '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","custom_extension_stage_setting_id":"example_custom_extension_stage_setting_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_update_custom_extension_stage_settings '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","custom_extension_stage_setting_id":"example_custom_extension_stage_setting_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_custom_extension_stage_settings_get_custom_extension

Get customExtension from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}/customExtension.

Read read
Parameters
access_package_assignment_policy_id, custom_extension_stage_setting_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_custom_extension_stage_settings_get_custom_extension '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","custom_extension_stage_setting_id":"example_custom_extension_stage_setting_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_custom_extension_stage_settings_get_custom_extension '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","custom_extension_stage_setting_id":"example_custom_extension_stage_setting_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_list_questions

Get questions from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions.

Read read
Parameters
access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_list_questions '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_list_questions '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_create_questions

Create new navigation property to questions for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions.

Write write
Parameters
access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_create_questions '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_create_questions '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_questions_get_count_ce3b

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions/$count.

Read read
Parameters
access_package_assignment_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_questions_get_count_ce3b '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_questions_get_count_ce3b '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_delete_questions

Delete navigation property questions for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions/{accessPackageQuestion-id}.

Write write
Parameters
access_package_assignment_policy_id, access_package_question_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_delete_questions '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","access_package_question_id":"example_access_package_question_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_delete_questions '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","access_package_question_id":"example_access_package_question_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_questions

Get questions from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions/{accessPackageQuestion-id}.

Read read
Parameters
access_package_assignment_policy_id, access_package_question_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_questions '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","access_package_question_id":"example_access_package_question_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_questions '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","access_package_question_id":"example_access_package_question_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_update_questions

Update the navigation property questions in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions/{accessPackageQuestion-id}.

Write write
Parameters
access_package_assignment_policy_id, access_package_question_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_update_questions '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","access_package_question_id":"example_access_package_question_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_update_questions '{"access_package_assignment_policy_id":"example_access_package_assignment_policy_id","access_package_question_id":"example_access_package_question_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_assignment_requests

List assignmentRequests\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentRequests.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_assignment_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_list_assignment_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_assignment_requests

Create accessPackageAssignmentRequest\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/assignmentRequests.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_assignment_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_create_assignment_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_count_e1cf

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentRequests/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_count_e1cf '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_count_e1cf '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentRequests/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_assignment_requests

Delete accessPackageAssignmentRequest\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}.

Write write
Parameters
access_package_assignment_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_assignment_requests '{"access_package_assignment_request_id":"example_access_package_assignment_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_delete_assignment_requests '{"access_package_assignment_request_id":"example_access_package_assignment_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_assignment_requests

Get accessPackageAssignmentRequest\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}.

Read read
Parameters
access_package_assignment_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_assignment_requests '{"access_package_assignment_request_id":"example_access_package_assignment_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_get_assignment_requests '{"access_package_assignment_request_id":"example_access_package_assignment_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_assignment_requests

Update the navigation property assignmentRequests in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}.

Write write
Parameters
access_package_assignment_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_assignment_requests '{"access_package_assignment_request_id":"example_access_package_assignment_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_update_assignment_requests '{"access_package_assignment_request_id":"example_access_package_assignment_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_access_package

Get accessPackage from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/accessPackage.

Read read
Parameters
access_package_assignment_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_access_package '{"access_package_assignment_request_id":"example_access_package_assignment_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_access_package '{"access_package_assignment_request_id":"example_access_package_assignment_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_assignment

Get assignment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/assignment.

Read read
Parameters
access_package_assignment_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_assignment '{"access_package_assignment_request_id":"example_access_package_assignment_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_assignment '{"access_package_assignment_request_id":"example_access_package_assignment_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_access_package_assignment_request_cancel

Invoke action cancel\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/cancel.

Read read
Parameters
access_package_assignment_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_access_package_assignment_request_cancel '{"access_package_assignment_request_id":"example_access_package_assignment_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_access_package_assignment_request_cancel '{"access_package_assignment_request_id":"example_access_package_assignment_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_access_package_assignment_request_reprocess

Invoke action reprocess\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/reprocess.

Read read
Parameters
access_package_assignment_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_access_package_assignment_request_reprocess '{"access_package_assignment_request_id":"example_access_package_assignment_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_access_package_assignment_request_reprocess '{"access_package_assignment_request_id":"example_access_package_assignment_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_requestor

Get requestor from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/requestor.

Read read
Parameters
access_package_assignment_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_requestor '{"access_package_assignment_request_id":"example_access_package_assignment_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_requestor '{"access_package_assignment_request_id":"example_access_package_assignment_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_access_package_assignment_request_resume

Invoke action resume\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/resume.

Read read
Parameters
access_package_assignment_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_access_package_assignment_request_resume '{"access_package_assignment_request_id":"example_access_package_assignment_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_access_package_assignment_request_resume '{"access_package_assignment_request_id":"example_access_package_assignment_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_assignments

List assignments\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignments.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_assignments '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_list_assignments '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_assignments

Create new navigation property to assignments for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/assignments.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_assignments '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_create_assignments '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_get_count_bb79

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignments/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_get_count_bb79 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignments_get_count_bb79 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_additional_access_894c

Invoke function additionalAccess\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignments/additionalAccess().

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_additional_access_894c '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignments_additional_access_894c '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_additional_access_9b62

Invoke function additionalAccess\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignments/additionalAccess(accessPackageId='{accessPackageId}',incompatibleAccessPackageId='{incompatibleAccessPackageId}').

Read read
Parameters
access_package_id, incompatible_access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_additional_access_9b62 '{"access_package_id":"example_access_package_id","incompatible_access_package_id":"example_incompatible_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignments_additional_access_9b62 '{"access_package_id":"example_access_package_id","incompatible_access_package_id":"example_incompatible_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignments/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignments_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_assignments

Delete navigation property assignments for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/assignments/{accessPackageAssignment-id}.

Write write
Parameters
access_package_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_assignments '{"access_package_assignment_id":"example_access_package_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_delete_assignments '{"access_package_assignment_id":"example_access_package_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_assignments

Get accessPackageAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignments/{accessPackageAssignment-id}.

Read read
Parameters
access_package_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_assignments '{"access_package_assignment_id":"example_access_package_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_get_assignments '{"access_package_assignment_id":"example_access_package_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_assignments

Update the navigation property assignments in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/assignments/{accessPackageAssignment-id}.

Write write
Parameters
access_package_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_assignments '{"access_package_assignment_id":"example_access_package_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_update_assignments '{"access_package_assignment_id":"example_access_package_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_get_access_package

Get accessPackage from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignments/{accessPackageAssignment-id}/accessPackage.

Read read
Parameters
access_package_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_get_access_package '{"access_package_assignment_id":"example_access_package_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignments_get_access_package '{"access_package_assignment_id":"example_access_package_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_get_assignment_policy

Get assignmentPolicy from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignments/{accessPackageAssignment-id}/assignmentPolicy.

Read read
Parameters
access_package_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_get_assignment_policy '{"access_package_assignment_id":"example_access_package_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignments_get_assignment_policy '{"access_package_assignment_id":"example_access_package_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_access_package_assignment_reprocess

Invoke action reprocess\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/assignments/{accessPackageAssignment-id}/reprocess.

Read read
Parameters
access_package_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_access_package_assignment_reprocess '{"access_package_assignment_id":"example_access_package_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignments_access_package_assignment_reprocess '{"access_package_assignment_id":"example_access_package_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_get_target

Get target from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/assignments/{accessPackageAssignment-id}/target.

Read read
Parameters
access_package_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_get_target '{"access_package_assignment_id":"example_access_package_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_assignments_get_target '{"access_package_assignment_id":"example_access_package_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_catalogs

List catalogs\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_catalogs '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_list_catalogs '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_catalogs

Create accessPackageCatalog\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_catalogs '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_create_catalogs '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_count_ec42

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_count_ec42 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_count_ec42 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_catalogs

Delete accessPackageCatalog\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}.

Write write
Parameters
access_package_catalog_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_catalogs '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_delete_catalogs '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_catalogs

Get accessPackageCatalog\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}.

Read read
Parameters
access_package_catalog_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_catalogs '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_get_catalogs '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_catalogs

Update accessPackageCatalog\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}.

Write write
Parameters
access_package_catalog_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_catalogs '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_update_catalogs '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_access_packages

Get accessPackages from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/accessPackages.

Read read
Parameters
access_package_catalog_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_access_packages '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_access_packages '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_packages_get_count_d253

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/accessPackages/$count.

Read read
Parameters
access_package_catalog_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_packages_get_count_d253 '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_packages_get_count_d253 '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_access_packages

Get accessPackages from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/accessPackages/{accessPackage-id}.

Read read
Parameters
access_package_catalog_id, access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_access_packages '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_access_packages '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_custom_workflow_extensions

List accessPackageCustomWorkflowExtensions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/customWorkflowExtensions.

Read read
Parameters
access_package_catalog_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_custom_workflow_extensions '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_custom_workflow_extensions '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_custom_workflow_extensions

Create accessPackageCustomWorkflowExtension\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/customWorkflowExtensions.

Write write
Parameters
access_package_catalog_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_custom_workflow_extensions '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_custom_workflow_extensions '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_custom_workflow_extensions_get_count_dc25

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/customWorkflowExtensions/$count.

Read read
Parameters
access_package_catalog_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_custom_workflow_extensions_get_count_dc25 '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_custom_workflow_extensions_get_count_dc25 '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_custom_workflow_extensions

Delete accessPackageAssignmentRequestWorkflowExtension\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/customWorkflowExtensions/{customCalloutExtension-id}.

Write write
Parameters
access_package_catalog_id, custom_callout_extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_custom_workflow_extensions '{"access_package_catalog_id":"example_access_package_catalog_id","custom_callout_extension_id":"example_custom_callout_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_custom_workflow_extensions '{"access_package_catalog_id":"example_access_package_catalog_id","custom_callout_extension_id":"example_custom_callout_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_custom_workflow_extensions

Get accessPackageAssignmentRequestWorkflowExtension\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/customWorkflowExtensions/{customCalloutExtension-id}.

Read read
Parameters
access_package_catalog_id, custom_callout_extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_custom_workflow_extensions '{"access_package_catalog_id":"example_access_package_catalog_id","custom_callout_extension_id":"example_custom_callout_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_custom_workflow_extensions '{"access_package_catalog_id":"example_access_package_catalog_id","custom_callout_extension_id":"example_custom_callout_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_custom_workflow_extensions

Update accessPackageAssignmentRequestWorkflowExtension\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/customWorkflowExtensions/{customCalloutExtension-id}.

Write write
Parameters
access_package_catalog_id, custom_callout_extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_custom_workflow_extensions '{"access_package_catalog_id":"example_access_package_catalog_id","custom_callout_extension_id":"example_custom_callout_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_custom_workflow_extensions '{"access_package_catalog_id":"example_access_package_catalog_id","custom_callout_extension_id":"example_custom_callout_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_resource_roles

List resourceRoles\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles.

Read read
Parameters
access_package_catalog_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_resource_roles '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_resource_roles '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_resource_roles

Create new navigation property to resourceRoles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles.

Write write
Parameters
access_package_catalog_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_resource_roles '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_resource_roles '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_get_count_0b89

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/$count.

Read read
Parameters
access_package_catalog_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_get_count_0b89 '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_get_count_0b89 '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_resource_roles

Delete navigation property resourceRoles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_catalog_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_resource_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_resource_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_resource_roles

Get resourceRoles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_catalog_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_resource_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_resource_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_resource_roles

Update the navigation property resourceRoles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_catalog_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_resource_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_resource_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_catalog_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_delete_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_delete_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource.

Read read
Parameters
access_package_catalog_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_get_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_get_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_catalog_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_update_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_update_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/environment.

Read read
Parameters
access_package_catalog_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_get_environment '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_get_environment '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_roles_access_package_resource_role_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/refresh.

Read read
Parameters
access_package_catalog_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_roles_access_package_resource_role_resource_refresh '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_roles_access_package_resource_role_resource_refresh '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/roles.

Read read
Parameters
access_package_catalog_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_list_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_list_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/roles.

Write write
Parameters
access_package_catalog_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_create_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_create_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_roles_get_count_caee

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/roles/$count.

Read read
Parameters
access_package_catalog_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_roles_get_count_caee '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_roles_get_count_caee '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/roles/{accessPackageResourceRole-id1}.

Write write
Parameters
access_package_catalog_id, access_package_resource_role_id, access_package_resource_role_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_delete_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_delete_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/roles/{accessPackageResourceRole-id1}.

Read read
Parameters
access_package_catalog_id, access_package_resource_role_id, access_package_resource_role_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_get_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_get_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/roles/{accessPackageResourceRole-id1}.

Write write
Parameters
access_package_catalog_id, access_package_resource_role_id, access_package_resource_role_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_update_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_update_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes.

Read read
Parameters
access_package_catalog_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_list_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_list_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes.

Write write
Parameters
access_package_catalog_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_create_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_create_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_get_count_0bb0

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/$count.

Read read
Parameters
access_package_catalog_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_get_count_0bb0 '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_get_count_0bb0 '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_catalog_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_delete_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_delete_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_catalog_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_get_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_get_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_catalog_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_update_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_update_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_catalog_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_delete_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_delete_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Read read
Parameters
access_package_catalog_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_get_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_get_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_catalog_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_update_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_update_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment.

Read read
Parameters
access_package_catalog_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_get_environment '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_get_environment '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/refresh.

Read read
Parameters
access_package_catalog_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles.

Read read
Parameters
access_package_catalog_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_list_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_list_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles.

Write write
Parameters
access_package_catalog_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_create_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_create_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_roles_get_count_d5ce

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/$count.

Read read
Parameters
access_package_catalog_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_roles_get_count_d5ce '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_roles_get_count_d5ce '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id1}.

Write write
Parameters
access_package_catalog_id, access_package_resource_role_id, access_package_resource_scope_id, access_package_resource_role_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_delete_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_delete_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id1}.

Read read
Parameters
access_package_catalog_id, access_package_resource_role_id, access_package_resource_scope_id, access_package_resource_role_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_get_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_get_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id1}.

Write write
Parameters
access_package_catalog_id, access_package_resource_role_id, access_package_resource_scope_id, access_package_resource_role_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_update_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_update_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_resource_scopes

Get resourceScopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes.

Read read
Parameters
access_package_catalog_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_resource_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_resource_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_resource_scopes

Create new navigation property to resourceScopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes.

Write write
Parameters
access_package_catalog_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_resource_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_resource_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_get_count_41be

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/$count.

Read read
Parameters
access_package_catalog_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_get_count_41be '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_get_count_41be '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_resource_scopes

Delete navigation property resourceScopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_catalog_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_resource_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_resource_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_resource_scopes

Get resourceScopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_catalog_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_resource_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_resource_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_resource_scopes

Update the navigation property resourceScopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_catalog_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_resource_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_resource_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_catalog_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_delete_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_delete_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource.

Read read
Parameters
access_package_catalog_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_get_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_get_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_catalog_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_update_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_update_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/environment.

Read read
Parameters
access_package_catalog_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_get_environment '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_get_environment '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_scopes_access_package_resource_scope_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/refresh.

Read read
Parameters
access_package_catalog_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles.

Read read
Parameters
access_package_catalog_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_list_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_list_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles.

Write write
Parameters
access_package_catalog_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_create_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_create_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_get_count_61e2

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/$count.

Read read
Parameters
access_package_catalog_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_get_count_61e2 '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_get_count_61e2 '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_catalog_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_delete_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_delete_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_catalog_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_get_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_get_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_catalog_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_update_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_update_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_catalog_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_delete_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_delete_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Read read
Parameters
access_package_catalog_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_get_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_get_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_catalog_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_update_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_update_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment.

Read read
Parameters
access_package_catalog_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_get_environment '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_get_environment '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/refresh.

Read read
Parameters
access_package_catalog_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes.

Read read
Parameters
access_package_catalog_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_list_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_list_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes.

Write write
Parameters
access_package_catalog_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_create_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_create_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_scopes_get_count_d233

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/$count.

Read read
Parameters
access_package_catalog_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_scopes_get_count_d233 '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_scopes_get_count_d233 '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id1}.

Write write
Parameters
access_package_catalog_id, access_package_resource_scope_id, access_package_resource_role_id, access_package_resource_scope_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_delete_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_delete_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id1}.

Read read
Parameters
access_package_catalog_id, access_package_resource_scope_id, access_package_resource_role_id, access_package_resource_scope_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_get_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_get_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id1}.

Write write
Parameters
access_package_catalog_id, access_package_resource_scope_id, access_package_resource_role_id, access_package_resource_scope_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_update_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_update_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/scopes.

Read read
Parameters
access_package_catalog_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_list_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_list_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/scopes.

Write write
Parameters
access_package_catalog_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_create_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_create_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_scopes_get_count_8843

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/scopes/$count.

Read read
Parameters
access_package_catalog_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_scopes_get_count_8843 '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_scopes_get_count_8843 '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/scopes/{accessPackageResourceScope-id1}.

Write write
Parameters
access_package_catalog_id, access_package_resource_scope_id, access_package_resource_scope_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_delete_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_delete_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/scopes/{accessPackageResourceScope-id1}.

Read read
Parameters
access_package_catalog_id, access_package_resource_scope_id, access_package_resource_scope_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_get_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_get_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/scopes/{accessPackageResourceScope-id1}.

Write write
Parameters
access_package_catalog_id, access_package_resource_scope_id, access_package_resource_scope_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_update_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_update_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_resources

List resources\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources.

Read read
Parameters
access_package_catalog_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_resources '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_resources '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_resources

Create new navigation property to resources for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources.

Write write
Parameters
access_package_catalog_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_resources '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_resources '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_count_d7cc

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/$count.

Read read
Parameters
access_package_catalog_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_count_d7cc '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_count_d7cc '{"access_package_catalog_id":"example_access_package_catalog_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_resources

Delete navigation property resources for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_resources '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_resources '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_resources

Get resources from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_resources '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_resources '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_resources

Update the navigation property resources in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_resources '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_resources '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/environment.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_environment '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_environment '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/refresh.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_refresh '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_refresh '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_list_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_list_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_create_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_create_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_get_count_09f2

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/$count.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_get_count_09f2 '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_get_count_09f2 '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_delete_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_delete_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_update_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_update_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_delete_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_delete_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_get_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_get_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_update_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_update_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/environment.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_get_environment '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_get_environment '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/refresh.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_refresh '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_refresh '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_list_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_list_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_create_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_create_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_get_count_d8a6

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/$count.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_get_count_d8a6 '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_get_count_d8a6 '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_delete_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_delete_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_get_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_get_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_update_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_update_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_delete_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_delete_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_get_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_get_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_update_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_update_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_resource_get_environment '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_resource_get_environment '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/refresh.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_list_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_list_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_create_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_create_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_get_count_da5f

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/$count.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_get_count_da5f '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_get_count_da5f '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_delete_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_delete_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_update_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_update_scopes '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_delete_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_delete_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_get_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_get_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_update_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_update_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/environment.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_get_environment '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_get_environment '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/refresh.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_list_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_list_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_create_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_create_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_get_count_8e7a

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/$count.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_get_count_8e7a '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_get_count_8e7a '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_delete_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_delete_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_get_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_get_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_update_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_update_roles '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_delete_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_delete_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_get_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_get_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_update_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_update_resource '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_resource_get_environment '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_resource_get_environment '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/refresh.

Read read
Parameters
access_package_catalog_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh '{"access_package_catalog_id":"example_access_package_catalog_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_connected_organizations

List connectedOrganizations\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/connectedOrganizations.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_connected_organizations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_list_connected_organizations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_connected_organizations

Create connectedOrganization\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/connectedOrganizations.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_connected_organizations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_create_connected_organizations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_get_count_03a9

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/connectedOrganizations/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_get_count_03a9 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_get_count_03a9 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_connected_organizations

Delete connectedOrganization\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}.

Write write
Parameters
connected_organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_connected_organizations '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_delete_connected_organizations '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_connected_organizations

Get connectedOrganization\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}.

Read read
Parameters
connected_organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_connected_organizations '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_get_connected_organizations '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_connected_organizations

Update connectedOrganization\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}.

Write write
Parameters
connected_organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_connected_organizations '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_update_connected_organizations '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_external_sponsors

Get externalSponsors from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors.

Read read
Parameters
connected_organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_external_sponsors '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_external_sponsors '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_external_sponsors_get_count_3513

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/$count.

Read read
Parameters
connected_organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_external_sponsors_get_count_3513 '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_external_sponsors_get_count_3513 '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_delete_ref_external_sponsors

Remove externalSponsors\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/$ref.

Write write
Parameters
connected_organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_delete_ref_external_sponsors '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_delete_ref_external_sponsors '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_ref_external_sponsors

Get ref of externalSponsors from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/$ref.

Read read
Parameters
connected_organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_ref_external_sponsors '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_ref_external_sponsors '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_create_ref_external_sponsors

Add externalSponsors\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/$ref.

Write write
Parameters
connected_organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_create_ref_external_sponsors '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_create_ref_external_sponsors '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_external_sponsors_delete_ref_directory_object

Remove externalSponsors\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/{directoryObject-id}/$ref.

Write write
Parameters
connected_organization_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_external_sponsors_delete_ref_directory_object '{"connected_organization_id":"example_connected_organization_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_external_sponsors_delete_ref_directory_object '{"connected_organization_id":"example_connected_organization_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_internal_sponsors

Get internalSponsors from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors.

Read read
Parameters
connected_organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_internal_sponsors '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_internal_sponsors '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_internal_sponsors_get_count_7123

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$count.

Read read
Parameters
connected_organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_internal_sponsors_get_count_7123 '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_internal_sponsors_get_count_7123 '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_delete_ref_internal_sponsors

Remove internalSponsors\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$ref.

Write write
Parameters
connected_organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_delete_ref_internal_sponsors '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_delete_ref_internal_sponsors '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_ref_internal_sponsors

Get ref of internalSponsors from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$ref.

Read read
Parameters
connected_organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_ref_internal_sponsors '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_ref_internal_sponsors '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_create_ref_internal_sponsors

Add internalSponsors\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$ref.

Write write
Parameters
connected_organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_create_ref_internal_sponsors '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_create_ref_internal_sponsors '{"connected_organization_id":"example_connected_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_internal_sponsors_delete_ref_directory_object

Remove internalSponsors\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/{directoryObject-id}/$ref.

Write write
Parameters
connected_organization_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_internal_sponsors_delete_ref_directory_object '{"connected_organization_id":"example_connected_organization_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_internal_sponsors_delete_ref_directory_object '{"connected_organization_id":"example_connected_organization_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_resource_environments

List accessPackageResourceEnvironments\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_resource_environments '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_list_resource_environments '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_resource_environments

Create new navigation property to resourceEnvironments for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceEnvironments.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_resource_environments '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_create_resource_environments '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_get_count_6cd7

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_get_count_6cd7 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_get_count_6cd7 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_resource_environments

Delete navigation property resourceEnvironments for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}.

Write write
Parameters
access_package_resource_environment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_resource_environments '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_delete_resource_environments '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_resource_environments

Get resourceEnvironments from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}.

Read read
Parameters
access_package_resource_environment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_resource_environments '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_get_resource_environments '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_resource_environments

Update the navigation property resourceEnvironments in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}.

Write write
Parameters
access_package_resource_environment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_resource_environments '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_update_resource_environments '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_list_resources

Get resources from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources.

Read read
Parameters
access_package_resource_environment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_list_resources '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_list_resources '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_create_resources

Create new navigation property to resources for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources.

Write write
Parameters
access_package_resource_environment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_create_resources '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_create_resources '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_count_a39d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/$count.

Read read
Parameters
access_package_resource_environment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_count_a39d '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_count_a39d '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_delete_resources

Delete navigation property resources for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_delete_resources '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_delete_resources '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_get_resources

Get resources from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_get_resources '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_get_resources '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_update_resources

Update the navigation property resources in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_update_resources '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_update_resources '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/environment.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_environment '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_environment '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/refresh.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_refresh '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_refresh '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_list_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_list_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_create_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_create_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_get_count_c688

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/$count.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_get_count_c688 '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_get_count_c688 '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_delete_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_delete_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_update_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_update_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_delete_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_delete_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_get_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_get_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_update_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_update_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/environment.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_get_environment '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_get_environment '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_roles_access_package_resource_role_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/refresh.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_list_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_list_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_create_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_create_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_get_count_c193

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/$count.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_get_count_c193 '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_get_count_c193 '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_delete_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_delete_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_get_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_get_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_update_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_update_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_delete_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_delete_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_get_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_get_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_update_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_update_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_resource_get_environment '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_resource_get_environment '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/refresh.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_list_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_list_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_create_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_create_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_get_count_a9d8

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/$count.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_get_count_a9d8 '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_get_count_a9d8 '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_delete_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_delete_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_update_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_update_scopes '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_delete_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_delete_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_get_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_get_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_update_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_update_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/environment.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_get_environment '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_get_environment '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/refresh.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_list_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_list_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_create_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_create_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_get_count_aef4

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/$count.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_get_count_aef4 '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_get_count_aef4 '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_delete_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_delete_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_get_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_get_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_update_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_update_roles '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_delete_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_delete_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_get_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_get_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_update_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_update_resource '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_resource_get_environment '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_resource_get_environment '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/refresh.

Read read
Parameters
access_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_environment_id":"example_access_package_resource_environment_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_resource_requests

List accessPackageResourceRequests\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_resource_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_list_resource_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_resource_requests

Create accessPackageResourceRequest\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_resource_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_create_resource_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_get_count_c3aa

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_get_count_c3aa '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_get_count_c3aa '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_resource_requests

Delete navigation property resourceRequests for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}.

Write write
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_resource_requests '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_delete_resource_requests '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_resource_requests

Get resourceRequests from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_resource_requests '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_get_resource_requests '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_resource_requests

Update the navigation property resourceRequests in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}.

Write write
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_resource_requests '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_update_resource_requests '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_delete_catalog

Delete navigation property catalog for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog.

Write write
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_delete_catalog '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_delete_catalog '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_get_catalog

Get catalog from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_get_catalog '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_get_catalog '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_update_catalog

Update the navigation property catalog in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog.

Write write
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_update_catalog '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_update_catalog '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_access_packages

Get accessPackages from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/accessPackages.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_access_packages '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_access_packages '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_access_packages_get_count_c982

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/accessPackages/$count.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_access_packages_get_count_c982 '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_access_packages_get_count_c982 '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_access_packages

Get accessPackages from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/accessPackages/{accessPackage-id}.

Read read
Parameters
access_package_resource_request_id, access_package_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_access_packages '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_access_packages '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_id":"example_access_package_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_custom_workflow_extensions

Get customWorkflowExtensions from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/customWorkflowExtensions.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_custom_workflow_extensions '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_custom_workflow_extensions '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_custom_workflow_extensions

Create new navigation property to customWorkflowExtensions for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/customWorkflowExtensions.

Write write
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_custom_workflow_extensions '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_custom_workflow_extensions '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_custom_workflow_extensions_get_count_a166

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/customWorkflowExtensions/$count.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_custom_workflow_extensions_get_count_a166 '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_custom_workflow_extensions_get_count_a166 '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_custom_workflow_extensions

Delete navigation property customWorkflowExtensions for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/customWorkflowExtensions/{customCalloutExtension-id}.

Write write
Parameters
access_package_resource_request_id, custom_callout_extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_custom_workflow_extensions '{"access_package_resource_request_id":"example_access_package_resource_request_id","custom_callout_extension_id":"example_custom_callout_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_custom_workflow_extensions '{"access_package_resource_request_id":"example_access_package_resource_request_id","custom_callout_extension_id":"example_custom_callout_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_custom_workflow_extensions

Get customWorkflowExtensions from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/customWorkflowExtensions/{customCalloutExtension-id}.

Read read
Parameters
access_package_resource_request_id, custom_callout_extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_custom_workflow_extensions '{"access_package_resource_request_id":"example_access_package_resource_request_id","custom_callout_extension_id":"example_custom_callout_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_custom_workflow_extensions '{"access_package_resource_request_id":"example_access_package_resource_request_id","custom_callout_extension_id":"example_custom_callout_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_custom_workflow_extensions

Update the navigation property customWorkflowExtensions in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/customWorkflowExtensions/{customCalloutExtension-id}.

Write write
Parameters
access_package_resource_request_id, custom_callout_extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_custom_workflow_extensions '{"access_package_resource_request_id":"example_access_package_resource_request_id","custom_callout_extension_id":"example_custom_callout_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_custom_workflow_extensions '{"access_package_resource_request_id":"example_access_package_resource_request_id","custom_callout_extension_id":"example_custom_callout_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_resource_roles

Get resourceRoles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_resource_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_resource_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_resource_roles

Create new navigation property to resourceRoles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles.

Write write
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_resource_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_resource_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_get_count_416b

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/$count.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_get_count_416b '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_get_count_416b '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_resource_roles

Delete navigation property resourceRoles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_resource_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_resource_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_resource_roles

Get resourceRoles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_resource_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_resource_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_resource_roles

Update the navigation property resourceRoles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_resource_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_resource_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/environment.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_roles_access_package_resource_role_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/refresh.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/roles.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_list_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_list_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/roles.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_create_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_create_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_roles_get_count_ae6c

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/roles/$count.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_roles_get_count_ae6c '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_roles_get_count_ae6c '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/roles/{accessPackageResourceRole-id1}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_role_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_delete_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_delete_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/roles/{accessPackageResourceRole-id1}.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_role_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_get_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_get_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/roles/{accessPackageResourceRole-id1}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_role_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_update_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_update_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_list_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_list_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_create_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_create_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_get_count_d694

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/$count.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_get_count_d694 '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_get_count_d694 '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_delete_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_delete_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_get_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_get_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_update_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_update_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/refresh.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_list_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_list_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_create_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_create_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_roles_get_count_931a

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/$count.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_roles_get_count_931a '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_roles_get_count_931a '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id1}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, access_package_resource_role_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_delete_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_delete_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id1}.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, access_package_resource_role_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_get_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_get_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id1}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, access_package_resource_role_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_update_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_update_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id1":"example_access_package_resource_role_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_resource_scopes

Get resourceScopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_resource_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_resource_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_resource_scopes

Create new navigation property to resourceScopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes.

Write write
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_resource_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_resource_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_get_count_7b8f

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/$count.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_get_count_7b8f '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_get_count_7b8f '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_resource_scopes

Delete navigation property resourceScopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_resource_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_resource_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_resource_scopes

Get resourceScopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_resource_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_resource_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_resource_scopes

Update the navigation property resourceScopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_resource_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_resource_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/environment.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_scopes_access_package_resource_scope_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/refresh.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_list_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_list_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_create_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_create_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_get_count_2f61

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/$count.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_get_count_2f61 '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_get_count_2f61 '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_delete_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_delete_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_get_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_get_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_update_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_update_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/refresh.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_list_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_list_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_create_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_create_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_scopes_get_count_80a5

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/$count.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_scopes_get_count_80a5 '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_scopes_get_count_80a5 '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id1}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, access_package_resource_scope_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_delete_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_delete_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id1}.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, access_package_resource_scope_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_get_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_get_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id1}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, access_package_resource_scope_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_update_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_update_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/scopes.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_list_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_list_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/scopes.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_create_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_create_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_scopes_get_count_ce55

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/scopes/$count.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_scopes_get_count_ce55 '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_scopes_get_count_ce55 '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/scopes/{accessPackageResourceScope-id1}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_scope_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_delete_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_delete_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/scopes/{accessPackageResourceScope-id1}.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_scope_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_get_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_get_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/scopes/{accessPackageResourceScope-id1}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_scope_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_update_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_update_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_scope_id1":"example_access_package_resource_scope_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_resources

Get resources from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_resources '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_resources '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_resources

Create new navigation property to resources for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources.

Write write
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_resources '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_resources '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_count_10ad

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/$count.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_count_10ad '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_count_10ad '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_resources

Delete navigation property resources for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_resources '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_resources '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_resources

Get resources from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_resources '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_resources '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_resources

Update the navigation property resources in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_resources '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_resources '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/environment.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/refresh.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_list_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_list_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_create_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_create_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_get_count_061e

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/$count.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_get_count_061e '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_get_count_061e '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_delete_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_delete_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_update_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_update_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/environment.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/refresh.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_list_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_list_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_create_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_create_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_get_count_64b6

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/$count.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_get_count_64b6 '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_get_count_64b6 '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_delete_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_delete_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_get_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_get_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_update_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_update_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/refresh.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_list_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_list_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_create_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_create_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_get_count_26fa

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/$count.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_get_count_26fa '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_get_count_26fa '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_delete_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_delete_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_update_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_update_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/environment.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/refresh.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_list_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_list_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_create_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_create_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_get_count_2e6d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/$count.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_get_count_2e6d '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_get_count_2e6d '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_delete_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_delete_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_get_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_get_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_update_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_update_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/refresh.

Read read
Parameters
access_package_resource_request_id, access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource.

Write write
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource.

Write write
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/environment.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/refresh.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_list_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_list_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles.

Write write
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_create_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_create_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_get_count_ca1d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/$count.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_get_count_ca1d '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_get_count_ca1d '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_delete_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_delete_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_get_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_get_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_update_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_update_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_roles_access_package_resource_role_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/refresh.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_list_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_list_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_create_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_create_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_get_count_ee56

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/$count.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_get_count_ee56 '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_get_count_ee56 '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_delete_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_delete_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_get_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_get_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_update_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_update_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/refresh.

Read read
Parameters
access_package_resource_request_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_list_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_list_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes.

Write write
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_create_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_create_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_get_count_ebee

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/$count.

Read read
Parameters
access_package_resource_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_get_count_ebee '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_get_count_ebee '{"access_package_resource_request_id":"example_access_package_resource_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_delete_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_delete_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_get_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_get_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_update_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_update_scopes '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_scopes_access_package_resource_scope_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/refresh.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_list_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_list_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_create_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_create_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_get_count_94bf

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/$count.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_get_count_94bf '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_get_count_94bf '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_delete_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_delete_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_get_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_get_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_update_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_update_roles '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_delete_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_get_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_update_resource '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_resource_get_environment '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/refresh.

Read read
Parameters
access_package_resource_request_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_request_id":"example_access_package_resource_request_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_resource_role_scopes

Get resourceRoleScopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_resource_role_scopes '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_list_resource_role_scopes '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_resource_role_scopes

Create new navigation property to resourceRoleScopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRoleScopes.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_resource_role_scopes '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_create_resource_role_scopes '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_get_count_dadb

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_get_count_dadb '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_get_count_dadb '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_resource_role_scopes

Delete navigation property resourceRoleScopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}.

Write write
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_resource_role_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_delete_resource_role_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_resource_role_scopes

Get resourceRoleScopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}.

Read read
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_resource_role_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_get_resource_role_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_resource_role_scopes

Update the navigation property resourceRoleScopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}.

Write write
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_resource_role_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_update_resource_role_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_delete_role

Delete navigation property role for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role.

Write write
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_delete_role '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_delete_role '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_get_role

Get role from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role.

Read read
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_get_role '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_get_role '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_update_role

Update the navigation property role in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role.

Write write
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_update_role '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_update_role '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource.

Write write
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_delete_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_delete_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource.

Read read
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_get_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_get_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource.

Write write
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_update_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_update_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/environment.

Read read
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_get_environment '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_get_environment '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_role_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/refresh.

Read read
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_role_resource_refresh '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_role_resource_refresh '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles.

Read read
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_list_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_list_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles.

Write write
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_create_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_create_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_roles_get_count_f86a

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles/$count.

Read read
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_roles_get_count_f86a '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_roles_get_count_f86a '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_delete_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_delete_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_get_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_get_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_update_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_update_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes.

Read read
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_list_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_list_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes.

Write write
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_create_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_create_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_get_count_2739

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/$count.

Read read
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_get_count_2739 '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_get_count_2739 '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_delete_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_delete_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_get_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_get_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_update_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_update_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_delete_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_delete_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource.

Read read
Parameters
access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_get_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_get_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_update_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_update_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/environment.

Read read
Parameters
access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_get_environment '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_get_environment '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_role_resource_scopes_access_package_resource_scope_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/refresh.

Read read
Parameters
access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_role_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_role_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles.

Read read
Parameters
access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_list_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_list_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles.

Write write
Parameters
access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_create_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_create_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_roles_get_count_d2bb

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles/$count.

Read read
Parameters
access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_roles_get_count_d2bb '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_roles_get_count_d2bb '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_role_scope_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_delete_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_delete_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_resource_role_scope_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_get_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_get_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_role_scope_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_update_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_update_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_delete_scope

Delete navigation property scope for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope.

Write write
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_delete_scope '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_delete_scope '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_get_scope

Get scope from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope.

Read read
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_get_scope '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_get_scope '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_update_scope

Update the navigation property scope in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope.

Write write
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_update_scope '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_update_scope '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource.

Write write
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_delete_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_delete_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource.

Read read
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_get_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_get_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource.

Write write
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_update_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_update_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/environment.

Read read
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_get_environment '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_get_environment '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_scope_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/refresh.

Read read
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_scope_resource_refresh '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_scope_resource_refresh '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles.

Read read
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_list_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_list_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles.

Write write
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_create_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_create_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_get_count_d421

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/$count.

Read read
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_get_count_d421 '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_get_count_d421 '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_delete_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_delete_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_get_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_get_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_update_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_update_roles '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_delete_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_delete_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource.

Read read
Parameters
access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_get_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_get_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_update_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_update_resource '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/environment.

Read read
Parameters
access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_get_environment '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_get_environment '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_scope_resource_roles_access_package_resource_role_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/refresh.

Read read
Parameters
access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_scope_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_scope_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes.

Read read
Parameters
access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_list_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_list_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes.

Write write
Parameters
access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_create_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_create_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_scopes_get_count_37e6

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes/$count.

Read read
Parameters
access_package_resource_role_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_scopes_get_count_37e6 '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_scopes_get_count_37e6 '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_role_scope_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_delete_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_delete_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_resource_role_scope_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_get_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_get_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_role_scope_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_update_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_update_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes.

Read read
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_list_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_list_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes.

Write write
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_create_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_create_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_scopes_get_count_7447

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes/$count.

Read read
Parameters
access_package_resource_role_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_scopes_get_count_7447 '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_scopes_get_count_7447 '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_delete_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_delete_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_get_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_get_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_role_scope_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_update_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_update_scopes '{"access_package_resource_role_scope_id":"example_access_package_resource_role_scope_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_resources

Get resources from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_resources '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_list_resources '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_resources

Create new navigation property to resources for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resources.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_resources '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_create_resources '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_get_count_c197

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_get_count_c197 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_get_count_c197 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_resources

Delete navigation property resources for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}.

Write write
Parameters
access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_resources '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_delete_resources '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_resources

Get resources from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}.

Read read
Parameters
access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_resources '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_get_resources '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_resources

Update the navigation property resources in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}.

Write write
Parameters
access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_resources '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_update_resources '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/environment.

Read read
Parameters
access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_get_environment '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_get_environment '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/refresh.

Read read
Parameters
access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_refresh '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_refresh '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles.

Read read
Parameters
access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_list_roles '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_list_roles '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles.

Write write
Parameters
access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_create_roles '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_create_roles '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_get_count_0757

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/$count.

Read read
Parameters
access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_get_count_0757 '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_roles_get_count_0757 '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_delete_roles '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_delete_roles '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_get_roles '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_get_roles '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_update_roles '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_update_roles '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_delete_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_roles_delete_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource.

Read read
Parameters
access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_get_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_roles_get_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_update_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_roles_update_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/environment.

Read read
Parameters
access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_get_environment '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_get_environment '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_roles_access_package_resource_role_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/refresh.

Read read
Parameters
access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes.

Read read
Parameters
access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_list_scopes '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_list_scopes '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes.

Write write
Parameters
access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_create_scopes '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_create_scopes '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_get_count_a8f2

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/$count.

Read read
Parameters
access_package_resource_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_get_count_a8f2 '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_get_count_a8f2 '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_delete_scopes '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_delete_scopes '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_get_scopes '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_get_scopes '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_update_scopes '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_update_scopes '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_delete_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_delete_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Read read
Parameters
access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_get_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_get_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_update_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_update_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment.

Read read
Parameters
access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_resource_get_environment '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_resource_get_environment '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/refresh.

Read read
Parameters
access_package_resource_id, access_package_resource_role_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_role_id":"example_access_package_resource_role_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_list_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes.

Read read
Parameters
access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_list_scopes '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_list_scopes '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_create_scopes

Create new navigation property to scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes.

Write write
Parameters
access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_create_scopes '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_create_scopes '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_get_count_d1a9

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/$count.

Read read
Parameters
access_package_resource_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_get_count_d1a9 '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_get_count_d1a9 '{"access_package_resource_id":"example_access_package_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_delete_scopes

Delete navigation property scopes for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_delete_scopes '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_delete_scopes '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_get_scopes

Get scopes from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}.

Read read
Parameters
access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_get_scopes '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_get_scopes '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_update_scopes

Update the navigation property scopes in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}.

Write write
Parameters
access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_update_scopes '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_update_scopes '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_delete_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_delete_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource.

Read read
Parameters
access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_get_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_get_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource.

Write write
Parameters
access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_update_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_update_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/environment.

Read read
Parameters
access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_get_environment '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_get_environment '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/refresh.

Read read
Parameters
access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_list_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles.

Read read
Parameters
access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_list_roles '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_list_roles '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_create_roles

Create new navigation property to roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles.

Write write
Parameters
access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_create_roles '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_create_roles '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_get_count_5bb2

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/$count.

Read read
Parameters
access_package_resource_id, access_package_resource_scope_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_get_count_5bb2 '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_get_count_5bb2 '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_delete_roles

Delete navigation property roles for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_delete_roles '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_delete_roles '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_get_roles

Get roles from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Read read
Parameters
access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_get_roles '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_get_roles '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_update_roles

Update the navigation property roles in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}.

Write write
Parameters
access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_update_roles '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_update_roles '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_delete_resource

Delete navigation property resource for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_delete_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_delete_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_get_resource

Get resource from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Read read
Parameters
access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_get_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_get_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_update_resource

Update the navigation property resource in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource.

Write write
Parameters
access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_update_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_update_resource '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_resource_get_environment

Get environment from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment.

Read read
Parameters
access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_resource_get_environment '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_resource_get_environment '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/refresh.

Read read
Parameters
access_package_resource_id, access_package_resource_scope_id, access_package_resource_role_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh '{"access_package_resource_id":"example_access_package_resource_id","access_package_resource_scope_id":"example_access_package_resource_scope_id","access_package_resource_role_id":"example_access_package_resource_role_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_delete_lifecycle_workflows

Delete navigation property lifecycleWorkflows for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/lifecycleWorkflows.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_delete_lifecycle_workflows '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_delete_lifecycle_workflows '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_get_lifecycle_workflows

Get lifecycleWorkflows from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_get_lifecycle_workflows '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_get_lifecycle_workflows '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_update_lifecycle_workflows

Update the navigation property lifecycleWorkflows in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/lifecycleWorkflows.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_update_lifecycle_workflows '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_update_lifecycle_workflows '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_list_custom_task_extensions

List customTaskExtensions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/customTaskExtensions.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_list_custom_task_extensions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_list_custom_task_extensions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_create_custom_task_extensions

Create customTaskExtensions\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/customTaskExtensions.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_create_custom_task_extensions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_create_custom_task_extensions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_get_count_b240

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/customTaskExtensions/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_get_count_b240 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_get_count_b240 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_delete_custom_task_extensions

Delete customTaskExtension\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}.

Write write
Parameters
custom_task_extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_delete_custom_task_extensions '{"custom_task_extension_id":"example_custom_task_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_delete_custom_task_extensions '{"custom_task_extension_id":"example_custom_task_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_custom_task_extensions

Get customTaskExtension\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}.

Read read
Parameters
custom_task_extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_custom_task_extensions '{"custom_task_extension_id":"example_custom_task_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_get_custom_task_extensions '{"custom_task_extension_id":"example_custom_task_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_update_custom_task_extensions

Update customTaskExtension\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}.

Write write
Parameters
custom_task_extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_update_custom_task_extensions '{"custom_task_extension_id":"example_custom_task_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_update_custom_task_extensions '{"custom_task_extension_id":"example_custom_task_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_get_created_by

Get createdBy from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy.

Read read
Parameters
custom_task_extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_get_created_by '{"custom_task_extension_id":"example_custom_task_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_get_created_by '{"custom_task_extension_id":"example_custom_task_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_created_by_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/serviceProvisioningErrors.

Read read
Parameters
custom_task_extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_created_by_list_service_provisioning_errors '{"custom_task_extension_id":"example_custom_task_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_created_by_list_service_provisioning_errors '{"custom_task_extension_id":"example_custom_task_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_created_by_service_provisioning_errors_get_count_74e6

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/serviceProvisioningErrors/$count.

Read read
Parameters
custom_task_extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_created_by_service_provisioning_errors_get_count_74e6 '{"custom_task_extension_id":"example_custom_task_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_created_by_service_provisioning_errors_get_count_74e6 '{"custom_task_extension_id":"example_custom_task_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_get_last_modified_by

Get lastModifiedBy from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy.

Read read
Parameters
custom_task_extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_get_last_modified_by '{"custom_task_extension_id":"example_custom_task_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_get_last_modified_by '{"custom_task_extension_id":"example_custom_task_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_last_modified_by_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/serviceProvisioningErrors.

Read read
Parameters
custom_task_extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_last_modified_by_list_service_provisioning_errors '{"custom_task_extension_id":"example_custom_task_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_last_modified_by_list_service_provisioning_errors '{"custom_task_extension_id":"example_custom_task_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_last_modified_by_service_provisioning_errors_get_count_8d38

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/serviceProvisioningErrors/$count.

Read read
Parameters
custom_task_extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_last_modified_by_service_provisioning_errors_get_count_8d38 '{"custom_task_extension_id":"example_custom_task_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_last_modified_by_service_provisioning_errors_get_count_8d38 '{"custom_task_extension_id":"example_custom_task_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_delete_deleted_items

Delete navigation property deletedItems for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/lifecycleWorkflows/deletedItems.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_delete_deleted_items '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_delete_deleted_items '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_deleted_items

Get deletedItems from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_deleted_items '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_get_deleted_items '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_list_workflows

List deletedItems (deleted lifecycle workflows)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_list_workflows '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_list_workflows '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_count_4207

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_count_4207 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_count_4207 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_delete_workflows

Delete deletedItemContainer (permanently delete a deleted lifecycle workflow)\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}.

Write write
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_delete_workflows '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_delete_workflows '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_get_workflows

Get deletedItemContainer (a deleted lifecycle workflow)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_get_workflows '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_get_workflows '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_administration_scope_targets

Get administrationScopeTargets from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/administrationScopeTargets.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_administration_scope_targets '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_administration_scope_targets '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_administration_scope_targets_get_count_9431

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/administrationScopeTargets/$count.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_administration_scope_targets_get_count_9431 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_administration_scope_targets_get_count_9431 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_administration_scope_targets

Get administrationScopeTargets from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/administrationScopeTargets/{directoryObject-id}.

Read read
Parameters
workflow_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_administration_scope_targets '{"workflow_id":"example_workflow_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_administration_scope_targets '{"workflow_id":"example_workflow_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_created_by

Get createdBy from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/createdBy.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_created_by '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_created_by '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_created_by_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/createdBy/serviceProvisioningErrors.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_created_by_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_created_by_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_created_by_service_provisioning_errors_get_count_1081

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/createdBy/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_created_by_service_provisioning_errors_get_count_1081 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_created_by_service_provisioning_errors_get_count_1081 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_execution_scope

Get executionScope from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/executionScope.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_execution_scope '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_execution_scope '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_execution_scope_get_count_e524

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/executionScope/$count.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_execution_scope_get_count_e524 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_execution_scope_get_count_e524 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_execution_scope

Get executionScope from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/executionScope/{userProcessingResult-id}.

Read read
Parameters
workflow_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_execution_scope '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_execution_scope '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_last_modified_by

Get lastModifiedBy from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/lastModifiedBy.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_last_modified_by '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_last_modified_by '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_last_modified_by_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/lastModifiedBy/serviceProvisioningErrors.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_last_modified_by_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_last_modified_by_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_last_modified_by_service_provisioning_errors_get_count_def1

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/lastModifiedBy/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_last_modified_by_service_provisioning_errors_get_count_def1 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_last_modified_by_service_provisioning_errors_get_count_def1 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_activate

Invoke action activate\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/microsoft.graph.identityGovernance.activate.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_activate '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_activate '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_activate_with_scope

Invoke action activateWithScope\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/microsoft.graph.identityGovernance.activateWithScope.

Write write
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_activate_with_scope '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_activate_with_scope '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_create_new_version

Invoke action createNewVersion\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/microsoft.graph.identityGovernance.createNewVersion.

Write write
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_create_new_version '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_create_new_version '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_restore

Invoke action restore\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/microsoft.graph.identityGovernance.restore.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_restore '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_restore '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_runs

Get runs from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_runs '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_runs '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_count_04a6

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/$count.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_count_04a6 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_count_04a6 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_summary

Invoke function summary\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/microsoft.graph.identityGovernance.summary(startDateTime={startDateTime},endDateTime={endDateTime}).

Read read
Parameters
workflow_id, start_date_time, end_date_time, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_summary '{"workflow_id":"example_workflow_id","start_date_time":"example_start_date_time","end_date_time":"example_end_date_time","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_summary '{"workflow_id":"example_workflow_id","start_date_time":"example_start_date_time","end_date_time":"example_end_date_time","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_runs

Get runs from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}.

Read read
Parameters
workflow_id, run_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_list_reprocessed_runs

Get reprocessedRuns from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/reprocessedRuns.

Read read
Parameters
workflow_id, run_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_list_reprocessed_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_list_reprocessed_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_reprocessed_runs_get_count_ec42

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/reprocessedRuns/$count.

Read read
Parameters
workflow_id, run_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_reprocessed_runs_get_count_ec42 '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_reprocessed_runs_get_count_ec42 '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_reprocessed_runs

Get reprocessedRuns from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/reprocessedRuns/{run-id1}.

Read read
Parameters
workflow_id, run_id, run_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_reprocessed_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","run_id1":"example_run_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_reprocessed_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","run_id1":"example_run_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_list_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults.

Read read
Parameters
workflow_id, run_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_list_task_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_list_task_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_get_count_301f

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/$count.

Read read
Parameters
workflow_id, run_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_get_count_301f '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_get_count_301f '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}.

Read read
Parameters
workflow_id, run_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_task_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_task_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_run_task_processing_results_task_processing_result_resume

Invoke action resume\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume.

Write write
Parameters
workflow_id, run_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_run_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_run_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_get_subject

Get subject from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject.

Read read
Parameters
workflow_id, run_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_subject_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors.

Read read
Parameters
workflow_id, run_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_subject_service_provisioning_errors_get_count_9c1a

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, run_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_subject_service_provisioning_errors_get_count_9c1a '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_subject_service_provisioning_errors_get_count_9c1a '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_get_task

Get task from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/task.

Read read
Parameters
workflow_id, run_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_get_task '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_get_task '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_list_user_processing_results

Get userProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults.

Read read
Parameters
workflow_id, run_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_list_user_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_list_user_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_count_ea74

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/$count.

Read read
Parameters
workflow_id, run_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_count_ea74 '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_count_ea74 '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_run_user_processing_results_summary

Invoke function summary\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/microsoft.graph.identityGovernance.summary(startDateTime={startDateTime},endDateTime={endDateTime}).

Write write
Parameters
workflow_id, run_id, start_date_time, end_date_time, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_run_user_processing_results_summary '{"workflow_id":"example_workflow_id","run_id":"example_run_id","start_date_time":"example_start_date_time","end_date_time":"example_end_date_time","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_run_user_processing_results_summary '{"workflow_id":"example_workflow_id","run_id":"example_run_id","start_date_time":"example_start_date_time","end_date_time":"example_end_date_time","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_user_processing_results

Get userProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_user_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_user_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_list_reprocessed_runs

Get reprocessedRuns from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/reprocessedRuns.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_list_reprocessed_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_list_reprocessed_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_reprocessed_runs_get_count_e3b6

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/reprocessedRuns/$count.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_reprocessed_runs_get_count_e3b6 '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_reprocessed_runs_get_count_e3b6 '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_reprocessed_runs

Get reprocessedRuns from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/reprocessedRuns/{run-id1}.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, run_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_reprocessed_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","run_id1":"example_run_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_reprocessed_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","run_id1":"example_run_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_subject

Get subject from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_subject '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_subject '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_subject_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_subject_service_provisioning_errors_get_count_46e1

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_subject_service_provisioning_errors_get_count_46e1 '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_subject_service_provisioning_errors_get_count_46e1 '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_list_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_list_task_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_list_task_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_get_count_f799

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/$count.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_get_count_f799 '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_get_count_f799 '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_task_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_task_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_run_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume

Invoke action resume\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume.

Write write
Parameters
workflow_id, run_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_run_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_run_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_get_subject

Get subject from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/subject.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_subject_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_7f1d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_7f1d '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_7f1d '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_get_task

Get task from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/task.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_get_task '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_get_task '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_task_reports

Get taskReports from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_task_reports '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_task_reports '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_count_f9a3

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/$count.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_count_f9a3 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_count_f9a3 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_task_reports_summary

Invoke function summary\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/microsoft.graph.identityGovernance.summary(startDateTime={startDateTime},endDateTime={endDateTime}).

Read read
Parameters
workflow_id, start_date_time, end_date_time, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_task_reports_summary '{"workflow_id":"example_workflow_id","start_date_time":"example_start_date_time","end_date_time":"example_end_date_time","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_task_reports_summary '{"workflow_id":"example_workflow_id","start_date_time":"example_start_date_time","end_date_time":"example_end_date_time","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_task_reports

Get taskReports from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}.

Read read
Parameters
workflow_id, task_report_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_task_reports '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_task_reports '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_task

Get task from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}/task.

Read read
Parameters
workflow_id, task_report_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_task '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_task '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_task_definition

Get taskDefinition from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}/taskDefinition.

Read read
Parameters
workflow_id, task_report_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_task_definition '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_task_definition '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_list_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults.

Read read
Parameters
workflow_id, task_report_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_list_task_processing_results '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_list_task_processing_results '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_get_count_7b4b

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/$count.

Read read
Parameters
workflow_id, task_report_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_get_count_7b4b '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_get_count_7b4b '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}.

Read read
Parameters
workflow_id, task_report_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_task_processing_results '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_task_processing_results '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_task_reports_task_report_task_processing_results_task_processing_result_resume

Invoke action resume\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume.

Read read
Parameters
workflow_id, task_report_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_task_reports_task_report_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_task_reports_task_report_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_get_subject

Get subject from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject.

Read read
Parameters
workflow_id, task_report_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_subject_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors.

Read read
Parameters
workflow_id, task_report_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_subject_service_provisioning_errors_get_count_4e4d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, task_report_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_subject_service_provisioning_errors_get_count_4e4d '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_subject_service_provisioning_errors_get_count_4e4d '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_get_task

Get task from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/task.

Read read
Parameters
workflow_id, task_report_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_get_task '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_get_task '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_tasks

Get tasks from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_tasks '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_tasks '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_create_tasks

Create new navigation property to tasks for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks.

Write write
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_create_tasks '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_create_tasks '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_get_count_67b2

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/$count.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_get_count_67b2 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_get_count_67b2 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_delete_tasks

Delete navigation property tasks for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}.

Write write
Parameters
workflow_id, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_delete_tasks '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_delete_tasks '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_tasks

Get tasks from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}.

Read read
Parameters
workflow_id, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_tasks '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_tasks '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_update_tasks

Update the navigation property tasks in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}.

Write write
Parameters
workflow_id, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_update_tasks '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_update_tasks '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_list_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults.

Read read
Parameters
workflow_id, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_list_task_processing_results '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_list_task_processing_results '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_get_count_3d21

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/$count.

Read read
Parameters
workflow_id, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_get_count_3d21 '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_get_count_3d21 '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_get_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}.

Read read
Parameters
workflow_id, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_get_task_processing_results '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_get_task_processing_results '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_tasks_task_task_processing_results_task_processing_result_resume

Invoke action resume\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume.

Read read
Parameters
workflow_id, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_tasks_task_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_tasks_task_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_get_subject

Get subject from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject.

Read read
Parameters
workflow_id, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_subject_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors.

Read read
Parameters
workflow_id, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_subject_service_provisioning_errors_get_count_43b9

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_subject_service_provisioning_errors_get_count_43b9 '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_subject_service_provisioning_errors_get_count_43b9 '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_get_task

Get task from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task.

Read read
Parameters
workflow_id, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_get_task '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_get_task '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_user_processing_results

Get userProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_user_processing_results '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_user_processing_results '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_count_52b9

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/$count.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_count_52b9 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_count_52b9 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_user_processing_results_summary

Invoke function summary\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/microsoft.graph.identityGovernance.summary(startDateTime={startDateTime},endDateTime={endDateTime}).

Read read
Parameters
workflow_id, start_date_time, end_date_time, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_user_processing_results_summary '{"workflow_id":"example_workflow_id","start_date_time":"example_start_date_time","end_date_time":"example_end_date_time","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_user_processing_results_summary '{"workflow_id":"example_workflow_id","start_date_time":"example_start_date_time","end_date_time":"example_end_date_time","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_user_processing_results

Get userProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}.

Read read
Parameters
workflow_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_user_processing_results '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_user_processing_results '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_list_reprocessed_runs

Get reprocessedRuns from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/reprocessedRuns.

Read read
Parameters
workflow_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_list_reprocessed_runs '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_list_reprocessed_runs '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_reprocessed_runs_get_count_69e5

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/reprocessedRuns/$count.

Read read
Parameters
workflow_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_reprocessed_runs_get_count_69e5 '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_reprocessed_runs_get_count_69e5 '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_reprocessed_runs

Get reprocessedRuns from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/reprocessedRuns/{run-id}.

Read read
Parameters
workflow_id, user_processing_result_id, run_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_reprocessed_runs '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_reprocessed_runs '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_subject

Get subject from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject.

Read read
Parameters
workflow_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_subject '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_subject '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_subject_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors.

Read read
Parameters
workflow_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_subject_service_provisioning_errors_get_count_e5c8

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_subject_service_provisioning_errors_get_count_e5c8 '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_subject_service_provisioning_errors_get_count_e5c8 '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_list_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults.

Read read
Parameters
workflow_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_list_task_processing_results '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_list_task_processing_results '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_get_count_dca2

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/$count.

Read read
Parameters
workflow_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_get_count_dca2 '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_get_count_dca2 '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}.

Read read
Parameters
workflow_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_task_processing_results '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_task_processing_results '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume

Invoke action resume\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume.

Read read
Parameters
workflow_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_get_subject

Get subject from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/subject.

Read read
Parameters
workflow_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_subject_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors.

Read read
Parameters
workflow_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_2ac7

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_2ac7 '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_2ac7 '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_get_task

Get task from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/task.

Read read
Parameters
workflow_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_get_task '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_get_task '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_versions

Get versions from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_versions '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_versions '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_count_faf1

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/$count.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_count_faf1 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_count_faf1 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_versions

Get versions from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_versions '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_versions '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_list_administration_scope_targets

Get administrationScopeTargets from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/administrationScopeTargets.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_list_administration_scope_targets '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_list_administration_scope_targets '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_administration_scope_targets_get_count_9c4d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/administrationScopeTargets/$count.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_administration_scope_targets_get_count_9c4d '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_administration_scope_targets_get_count_9c4d '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_administration_scope_targets

Get administrationScopeTargets from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/administrationScopeTargets/{directoryObject-id}.

Read read
Parameters
workflow_id, workflow_version_version_number, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_administration_scope_targets '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_administration_scope_targets '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_created_by

Get createdBy from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_created_by '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_created_by '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_created_by_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/serviceProvisioningErrors.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_created_by_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_created_by_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_created_by_service_provisioning_errors_get_count_91a7

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_created_by_service_provisioning_errors_get_count_91a7 '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_created_by_service_provisioning_errors_get_count_91a7 '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_last_modified_by

Get lastModifiedBy from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_last_modified_by '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_last_modified_by '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_last_modified_by_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/serviceProvisioningErrors.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_last_modified_by_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_last_modified_by_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_last_modified_by_service_provisioning_errors_get_count_346a

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_last_modified_by_service_provisioning_errors_get_count_346a '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_last_modified_by_service_provisioning_errors_get_count_346a '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_list_tasks

Get tasks from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_list_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_list_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_create_tasks

Create new navigation property to tasks for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks.

Write write
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_create_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_create_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_get_count_901d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/$count.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_get_count_901d '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_get_count_901d '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_delete_tasks

Delete navigation property tasks for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}.

Write write
Parameters
workflow_id, workflow_version_version_number, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_delete_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_delete_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_tasks

Get tasks from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}.

Read read
Parameters
workflow_id, workflow_version_version_number, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_update_tasks

Update the navigation property tasks in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}.

Write write
Parameters
workflow_id, workflow_version_version_number, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_update_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_update_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_list_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults.

Read read
Parameters
workflow_id, workflow_version_version_number, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_list_task_processing_results '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_list_task_processing_results '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_get_count_f65c

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/$count.

Read read
Parameters
workflow_id, workflow_version_version_number, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_get_count_f65c '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_get_count_f65c '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_get_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}.

Read read
Parameters
workflow_id, workflow_version_version_number, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_get_task_processing_results '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_get_task_processing_results '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_versions_workflow_version_tasks_task_task_processing_results_task_processing_result_resume

Invoke action resume\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume.

Read read
Parameters
workflow_id, workflow_version_version_number, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_versions_workflow_version_tasks_task_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_versions_workflow_version_tasks_task_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_get_subject

Get subject from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject.

Read read
Parameters
workflow_id, workflow_version_version_number, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_subject_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors.

Read read
Parameters
workflow_id, workflow_version_version_number, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_subject_service_provisioning_errors_get_count_c887

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, workflow_version_version_number, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_subject_service_provisioning_errors_get_count_c887 '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_subject_service_provisioning_errors_get_count_c887 '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_get_task

Get task from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task.

Read read
Parameters
workflow_id, workflow_version_version_number, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_get_task '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_get_task '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_list_task_definitions

List taskDefinitions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/taskDefinitions.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_list_task_definitions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_list_task_definitions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_task_definitions_get_count_36f9

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/taskDefinitions/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_task_definitions_get_count_36f9 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_task_definitions_get_count_36f9 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_task_definitions

Get taskDefinition\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/taskDefinitions/{taskDefinition-id}.

Read read
Parameters
task_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_task_definitions '{"task_definition_id":"example_task_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_get_task_definitions '{"task_definition_id":"example_task_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_list_workflow_templates

List workflowTemplates\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflowTemplates.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_list_workflow_templates '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_list_workflow_templates '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_get_count_7b73

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflowTemplates/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_get_count_7b73 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_get_count_7b73 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_workflow_templates

Get workflowTemplate\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}.

Read read
Parameters
workflow_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_workflow_templates '{"workflow_template_id":"example_workflow_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_get_workflow_templates '{"workflow_template_id":"example_workflow_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_list_tasks

Get tasks from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks.

Read read
Parameters
workflow_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_list_tasks '{"workflow_template_id":"example_workflow_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_list_tasks '{"workflow_template_id":"example_workflow_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_get_count_d308

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/$count.

Read read
Parameters
workflow_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_get_count_d308 '{"workflow_template_id":"example_workflow_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_get_count_d308 '{"workflow_template_id":"example_workflow_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_get_tasks

Get tasks from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}.

Read read
Parameters
workflow_template_id, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_get_tasks '{"workflow_template_id":"example_workflow_template_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_get_tasks '{"workflow_template_id":"example_workflow_template_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_list_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults.

Read read
Parameters
workflow_template_id, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_list_task_processing_results '{"workflow_template_id":"example_workflow_template_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_list_task_processing_results '{"workflow_template_id":"example_workflow_template_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_get_count_7ad8

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/$count.

Read read
Parameters
workflow_template_id, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_get_count_7ad8 '{"workflow_template_id":"example_workflow_template_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_get_count_7ad8 '{"workflow_template_id":"example_workflow_template_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_get_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}.

Read read
Parameters
workflow_template_id, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_get_task_processing_results '{"workflow_template_id":"example_workflow_template_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_get_task_processing_results '{"workflow_template_id":"example_workflow_template_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_workflow_template_tasks_task_task_processing_results_task_processing_result_resume

Invoke action resume\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume.

Read read
Parameters
workflow_template_id, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_workflow_template_tasks_task_task_processing_results_task_processing_result_resume '{"workflow_template_id":"example_workflow_template_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_workflow_template_tasks_task_task_processing_results_task_processing_result_resume '{"workflow_template_id":"example_workflow_template_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_get_subject

Get subject from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject.

Read read
Parameters
workflow_template_id, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_get_subject '{"workflow_template_id":"example_workflow_template_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_get_subject '{"workflow_template_id":"example_workflow_template_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_subject_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors.

Read read
Parameters
workflow_template_id, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_subject_list_service_provisioning_errors '{"workflow_template_id":"example_workflow_template_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_subject_list_service_provisioning_errors '{"workflow_template_id":"example_workflow_template_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_subject_service_provisioning_errors_get_count_c373

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_template_id, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_subject_service_provisioning_errors_get_count_c373 '{"workflow_template_id":"example_workflow_template_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_subject_service_provisioning_errors_get_count_c373 '{"workflow_template_id":"example_workflow_template_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_get_task

Get task from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task.

Read read
Parameters
workflow_template_id, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_get_task '{"workflow_template_id":"example_workflow_template_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_get_task '{"workflow_template_id":"example_workflow_template_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_list_workflows

List workflows\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_list_workflows '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_list_workflows '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_create_workflows

Create workflow\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/workflows.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_create_workflows '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_create_workflows '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_count_02c2

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_count_02c2 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_count_02c2 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_delete_workflows

Delete workflow\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}.

Write write
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_delete_workflows '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_delete_workflows '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_workflows

Get workflow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_workflows '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_get_workflows '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_update_workflows

Update workflow\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}.

Write write
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_update_workflows '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_update_workflows '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_administration_scope_targets

Get administrationScopeTargets from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/administrationScopeTargets.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_administration_scope_targets '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_administration_scope_targets '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_administration_scope_targets_get_count_b15b

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/administrationScopeTargets/$count.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_administration_scope_targets_get_count_b15b '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_administration_scope_targets_get_count_b15b '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_administration_scope_targets

Get administrationScopeTargets from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/administrationScopeTargets/{directoryObject-id}.

Read read
Parameters
workflow_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_administration_scope_targets '{"workflow_id":"example_workflow_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_administration_scope_targets '{"workflow_id":"example_workflow_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_created_by

Get createdBy from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_created_by '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_created_by '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_created_by_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/serviceProvisioningErrors.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_created_by_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_created_by_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_created_by_service_provisioning_errors_get_count_e799

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_created_by_service_provisioning_errors_get_count_e799 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_created_by_service_provisioning_errors_get_count_e799 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_execution_scope

Get executionScope from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_execution_scope '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_execution_scope '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_execution_scope_get_count_5898

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope/$count.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_execution_scope_get_count_5898 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_execution_scope_get_count_5898 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_execution_scope

Get executionScope from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope/{userProcessingResult-id}.

Read read
Parameters
workflow_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_execution_scope '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_execution_scope '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_last_modified_by

Get lastModifiedBy from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_last_modified_by '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_last_modified_by '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_last_modified_by_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/serviceProvisioningErrors.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_last_modified_by_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_last_modified_by_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_last_modified_by_service_provisioning_errors_get_count_f282

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_last_modified_by_service_provisioning_errors_get_count_f282 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_last_modified_by_service_provisioning_errors_get_count_f282 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_activate

Invoke action activate\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/microsoft.graph.identityGovernance.activate.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_activate '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_activate '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_activate_with_scope

Invoke action activateWithScope\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/microsoft.graph.identityGovernance.activateWithScope.

Write write
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_activate_with_scope '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_activate_with_scope '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_create_new_version

Invoke action createNewVersion\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/microsoft.graph.identityGovernance.createNewVersion.

Write write
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_create_new_version '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_create_new_version '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_restore

Invoke action restore\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/microsoft.graph.identityGovernance.restore.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_restore '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_restore '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_runs

List runs\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_runs '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_runs '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_count_ba86

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/$count.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_count_ba86 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_count_ba86 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_summary

Invoke function summary\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/microsoft.graph.identityGovernance.summary(startDateTime={startDateTime},endDateTime={endDateTime}).

Read read
Parameters
workflow_id, start_date_time, end_date_time, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_summary '{"workflow_id":"example_workflow_id","start_date_time":"example_start_date_time","end_date_time":"example_end_date_time","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_summary '{"workflow_id":"example_workflow_id","start_date_time":"example_start_date_time","end_date_time":"example_end_date_time","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_runs

Get run\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}.

Read read
Parameters
workflow_id, run_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_list_reprocessed_runs

Get reprocessedRuns from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/reprocessedRuns.

Read read
Parameters
workflow_id, run_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_list_reprocessed_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_list_reprocessed_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_reprocessed_runs_get_count_eacf

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/reprocessedRuns/$count.

Read read
Parameters
workflow_id, run_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_reprocessed_runs_get_count_eacf '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_reprocessed_runs_get_count_eacf '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_reprocessed_runs

Get reprocessedRuns from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/reprocessedRuns/{run-id1}.

Read read
Parameters
workflow_id, run_id, run_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_reprocessed_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","run_id1":"example_run_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_reprocessed_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","run_id1":"example_run_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_list_task_processing_results

List taskProcessingResults\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults.

Read read
Parameters
workflow_id, run_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_list_task_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_list_task_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_get_count_a908

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/$count.

Read read
Parameters
workflow_id, run_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_get_count_a908 '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_get_count_a908 '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}.

Read read
Parameters
workflow_id, run_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_task_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_task_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_run_task_processing_results_task_processing_result_resume

Invoke action resume\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume.

Write write
Parameters
workflow_id, run_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_run_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_run_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_get_subject

Get subject from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject.

Read read
Parameters
workflow_id, run_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_subject_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors.

Read read
Parameters
workflow_id, run_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_subject_service_provisioning_errors_get_count_7d33

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, run_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_subject_service_provisioning_errors_get_count_7d33 '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_subject_service_provisioning_errors_get_count_7d33 '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_get_task

Get task from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/task.

Read read
Parameters
workflow_id, run_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_get_task '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_get_task '{"workflow_id":"example_workflow_id","run_id":"example_run_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_list_user_processing_results

List userProcessingResults\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults.

Read read
Parameters
workflow_id, run_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_list_user_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_list_user_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_count_8fe3

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/$count.

Read read
Parameters
workflow_id, run_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_count_8fe3 '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_count_8fe3 '{"workflow_id":"example_workflow_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_run_user_processing_results_summary

Invoke function summary\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/microsoft.graph.identityGovernance.summary(startDateTime={startDateTime},endDateTime={endDateTime}).

Write write
Parameters
workflow_id, run_id, start_date_time, end_date_time, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_run_user_processing_results_summary '{"workflow_id":"example_workflow_id","run_id":"example_run_id","start_date_time":"example_start_date_time","end_date_time":"example_end_date_time","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_run_user_processing_results_summary '{"workflow_id":"example_workflow_id","run_id":"example_run_id","start_date_time":"example_start_date_time","end_date_time":"example_end_date_time","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_user_processing_results

Get userProcessingResult\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_user_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_user_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_list_reprocessed_runs

Get reprocessedRuns from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/reprocessedRuns.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_list_reprocessed_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_list_reprocessed_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_reprocessed_runs_get_count_4f4d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/reprocessedRuns/$count.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_reprocessed_runs_get_count_4f4d '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_reprocessed_runs_get_count_4f4d '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_reprocessed_runs

Get reprocessedRuns from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/reprocessedRuns/{run-id1}.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, run_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_reprocessed_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","run_id1":"example_run_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_reprocessed_runs '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","run_id1":"example_run_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_subject

Get subject from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_subject '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_subject '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_subject_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_subject_service_provisioning_errors_get_count_600e

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_subject_service_provisioning_errors_get_count_600e '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_subject_service_provisioning_errors_get_count_600e '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_list_task_processing_results

List taskProcessingResults\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_list_task_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_list_task_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_get_count_fd0a

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/$count.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_get_count_fd0a '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_get_count_fd0a '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_task_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_task_processing_results '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_run_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume

Invoke action resume\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume.

Write write
Parameters
workflow_id, run_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_run_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_run_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_get_subject

Get subject from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/subject.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_subject_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_2784

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_2784 '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_2784 '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_get_task

Get task from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/task.

Read read
Parameters
workflow_id, run_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_get_task '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_get_task '{"workflow_id":"example_workflow_id","run_id":"example_run_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_task_reports

List taskReports\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_task_reports '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_task_reports '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_count_1125

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/$count.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_count_1125 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_count_1125 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_task_reports_summary

Invoke function summary\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/microsoft.graph.identityGovernance.summary(startDateTime={startDateTime},endDateTime={endDateTime}).

Read read
Parameters
workflow_id, start_date_time, end_date_time, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_task_reports_summary '{"workflow_id":"example_workflow_id","start_date_time":"example_start_date_time","end_date_time":"example_end_date_time","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_task_reports_summary '{"workflow_id":"example_workflow_id","start_date_time":"example_start_date_time","end_date_time":"example_end_date_time","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_task_reports

Get taskReports from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}.

Read read
Parameters
workflow_id, task_report_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_task_reports '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_task_reports '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_task

Get task from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/task.

Read read
Parameters
workflow_id, task_report_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_task '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_task '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_task_definition

Get taskDefinition from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskDefinition.

Read read
Parameters
workflow_id, task_report_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_task_definition '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_task_definition '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_list_task_processing_results

List taskProcessingResult (for a taskReport)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults.

Read read
Parameters
workflow_id, task_report_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_list_task_processing_results '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_list_task_processing_results '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_get_count_8718

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/$count.

Read read
Parameters
workflow_id, task_report_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_get_count_8718 '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_get_count_8718 '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}.

Read read
Parameters
workflow_id, task_report_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_task_processing_results '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_task_processing_results '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_task_reports_task_report_task_processing_results_task_processing_result_resume

Invoke action resume\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume.

Read read
Parameters
workflow_id, task_report_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_task_reports_task_report_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_task_reports_task_report_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_get_subject

Get subject from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject.

Read read
Parameters
workflow_id, task_report_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_subject_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors.

Read read
Parameters
workflow_id, task_report_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_subject_service_provisioning_errors_get_count_aefd

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, task_report_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_subject_service_provisioning_errors_get_count_aefd '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_subject_service_provisioning_errors_get_count_aefd '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_get_task

Get task from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/task.

Read read
Parameters
workflow_id, task_report_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_get_task '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_get_task '{"workflow_id":"example_workflow_id","task_report_id":"example_task_report_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_tasks

List tasks (in Lifecycle Workflows)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_tasks '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_tasks '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_create_tasks

Create new navigation property to tasks for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks.

Write write
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_create_tasks '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_create_tasks '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_get_count_1c0a

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/$count.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_get_count_1c0a '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_get_count_1c0a '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_delete_tasks

Delete navigation property tasks for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}.

Write write
Parameters
workflow_id, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_delete_tasks '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_delete_tasks '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_tasks

Get task\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}.

Read read
Parameters
workflow_id, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_tasks '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_tasks '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_update_tasks

Update the navigation property tasks in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}.

Write write
Parameters
workflow_id, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_update_tasks '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_update_tasks '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_list_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults.

Read read
Parameters
workflow_id, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_list_task_processing_results '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_list_task_processing_results '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_get_count_4230

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/$count.

Read read
Parameters
workflow_id, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_get_count_4230 '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_get_count_4230 '{"workflow_id":"example_workflow_id","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_get_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}.

Read read
Parameters
workflow_id, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_get_task_processing_results '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_get_task_processing_results '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_tasks_task_task_processing_results_task_processing_result_resume

Invoke action resume\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume.

Read read
Parameters
workflow_id, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_tasks_task_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_tasks_task_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_get_subject

Get subject from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject.

Read read
Parameters
workflow_id, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_subject_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors.

Read read
Parameters
workflow_id, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_subject_service_provisioning_errors_get_count_4ca2

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_subject_service_provisioning_errors_get_count_4ca2 '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_subject_service_provisioning_errors_get_count_4ca2 '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_get_task

Get task from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task.

Read read
Parameters
workflow_id, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_get_task '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_get_task '{"workflow_id":"example_workflow_id","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_user_processing_results

List userProcessingResults\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_user_processing_results '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_user_processing_results '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_count_d3ed

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/$count.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_count_d3ed '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_count_d3ed '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_user_processing_results_summary

Invoke function summary\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/microsoft.graph.identityGovernance.summary(startDateTime={startDateTime},endDateTime={endDateTime}).

Read read
Parameters
workflow_id, start_date_time, end_date_time, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_user_processing_results_summary '{"workflow_id":"example_workflow_id","start_date_time":"example_start_date_time","end_date_time":"example_end_date_time","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_user_processing_results_summary '{"workflow_id":"example_workflow_id","start_date_time":"example_start_date_time","end_date_time":"example_end_date_time","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_user_processing_results

Get userProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}.

Read read
Parameters
workflow_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_user_processing_results '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_user_processing_results '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_list_reprocessed_runs

Get reprocessedRuns from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/reprocessedRuns.

Read read
Parameters
workflow_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_list_reprocessed_runs '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_list_reprocessed_runs '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_reprocessed_runs_get_count_61bf

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/reprocessedRuns/$count.

Read read
Parameters
workflow_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_reprocessed_runs_get_count_61bf '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_reprocessed_runs_get_count_61bf '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_reprocessed_runs

Get reprocessedRuns from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/reprocessedRuns/{run-id}.

Read read
Parameters
workflow_id, user_processing_result_id, run_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_reprocessed_runs '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_reprocessed_runs '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","run_id":"example_run_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_subject

Get subject from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject.

Read read
Parameters
workflow_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_subject '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_subject '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_subject_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors.

Read read
Parameters
workflow_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_subject_service_provisioning_errors_get_count_23a8

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_subject_service_provisioning_errors_get_count_23a8 '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_subject_service_provisioning_errors_get_count_23a8 '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_list_task_processing_results

List taskProcessingResults\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults.

Read read
Parameters
workflow_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_list_task_processing_results '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_list_task_processing_results '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_get_count_8333

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/$count.

Read read
Parameters
workflow_id, user_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_get_count_8333 '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_get_count_8333 '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}.

Read read
Parameters
workflow_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_task_processing_results '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_task_processing_results '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume

Invoke action resume\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume.

Read read
Parameters
workflow_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_get_subject

Get subject from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/subject.

Read read
Parameters
workflow_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_subject_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors.

Read read
Parameters
workflow_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_f382

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_f382 '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_f382 '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_get_task

Get task from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/task.

Read read
Parameters
workflow_id, user_processing_result_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_get_task '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_get_task '{"workflow_id":"example_workflow_id","user_processing_result_id":"example_user_processing_result_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_versions

List workflowVersions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_versions '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_versions '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_count_0c73

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/$count.

Read read
Parameters
workflow_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_count_0c73 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_count_0c73 '{"workflow_id":"example_workflow_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_versions

Get workflowVersion\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_versions '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_versions '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_list_administration_scope_targets

Get administrationScopeTargets from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/administrationScopeTargets.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_list_administration_scope_targets '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_list_administration_scope_targets '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_administration_scope_targets_get_count_b1ae

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/administrationScopeTargets/$count.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_administration_scope_targets_get_count_b1ae '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_administration_scope_targets_get_count_b1ae '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_administration_scope_targets

Get administrationScopeTargets from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/administrationScopeTargets/{directoryObject-id}.

Read read
Parameters
workflow_id, workflow_version_version_number, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_administration_scope_targets '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_administration_scope_targets '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_created_by

Get createdBy from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_created_by '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_created_by '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_created_by_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/serviceProvisioningErrors.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_created_by_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_created_by_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_created_by_service_provisioning_errors_get_count_ba38

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_created_by_service_provisioning_errors_get_count_ba38 '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_created_by_service_provisioning_errors_get_count_ba38 '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_last_modified_by

Get lastModifiedBy from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_last_modified_by '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_last_modified_by '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_last_modified_by_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/serviceProvisioningErrors.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_last_modified_by_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_last_modified_by_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_last_modified_by_service_provisioning_errors_get_count_8d93

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_last_modified_by_service_provisioning_errors_get_count_8d93 '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_last_modified_by_service_provisioning_errors_get_count_8d93 '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_list_tasks

List tasks (in a workflowVersion)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_list_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_list_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_create_tasks

Create new navigation property to tasks for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks.

Write write
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_create_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_create_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_get_count_de98

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/$count.

Read read
Parameters
workflow_id, workflow_version_version_number, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_get_count_de98 '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_get_count_de98 '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_delete_tasks

Delete navigation property tasks for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}.

Write write
Parameters
workflow_id, workflow_version_version_number, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_delete_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_delete_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_tasks

Get task\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}.

Read read
Parameters
workflow_id, workflow_version_version_number, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_update_tasks

Update the navigation property tasks in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}.

Write write
Parameters
workflow_id, workflow_version_version_number, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_update_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_update_tasks '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_list_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults.

Read read
Parameters
workflow_id, workflow_version_version_number, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_list_task_processing_results '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_list_task_processing_results '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_get_count_6334

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/$count.

Read read
Parameters
workflow_id, workflow_version_version_number, task_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_get_count_6334 '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_get_count_6334 '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_get_task_processing_results

Get taskProcessingResults from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}.

Read read
Parameters
workflow_id, workflow_version_version_number, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_get_task_processing_results '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_get_task_processing_results '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_versions_workflow_version_tasks_task_task_processing_results_task_processing_result_resume

Invoke action resume\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume.

Read read
Parameters
workflow_id, workflow_version_version_number, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_versions_workflow_version_tasks_task_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_versions_workflow_version_tasks_task_task_processing_results_task_processing_result_resume '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_get_subject

Get subject from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject.

Read read
Parameters
workflow_id, workflow_version_version_number, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_get_subject '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_subject_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors.

Read read
Parameters
workflow_id, workflow_version_version_number, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_subject_list_service_provisioning_errors '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_subject_service_provisioning_errors_get_count_5d3d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count.

Read read
Parameters
workflow_id, workflow_version_version_number, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_subject_service_provisioning_errors_get_count_5d3d '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_subject_service_provisioning_errors_get_count_5d3d '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_get_task

Get task from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task.

Read read
Parameters
workflow_id, workflow_version_version_number, task_id, task_processing_result_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_get_task '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_get_task '{"workflow_id":"example_workflow_id","workflow_version_version_number":"example_workflow_version_version_number","task_id":"example_task_id","task_processing_result_id":"example_task_processing_result_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_delete_privileged_access

Delete navigation property privilegedAccess for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/privilegedAccess.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_delete_privileged_access '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_delete_privileged_access '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_get_privileged_access

Get privilegedAccess from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_get_privileged_access '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_get_privileged_access '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_update_privileged_access

Update the navigation property privilegedAccess in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/privilegedAccess.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_update_privileged_access '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_update_privileged_access '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_delete_group

Delete navigation property group for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/privilegedAccess/group.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_delete_group '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_delete_group '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_get_group

Get group from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_get_group '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_get_group '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_update_group

Update the navigation property group in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/privilegedAccess/group.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_update_group '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_update_group '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_approvals

Get assignmentApprovals from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentApprovals.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_approvals '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_approvals '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_approvals

Create new navigation property to assignmentApprovals for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/privilegedAccess/group/assignmentApprovals.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_approvals '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_approvals '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_get_count_612b

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentApprovals/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_get_count_612b '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_get_count_612b '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentApprovals/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_approvals

Delete navigation property assignmentApprovals for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}.

Write write
Parameters
approval_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_approvals '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_approvals '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_approvals

Get assignmentApprovals from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}.

Read read
Parameters
approval_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_approvals '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_approvals '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_approvals

Update the navigation property assignmentApprovals in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}.

Write write
Parameters
approval_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_approvals '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_approvals '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_list_stages

Get stages from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/stages.

Read read
Parameters
approval_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_list_stages '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_list_stages '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_create_stages

Create new navigation property to stages for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/stages.

Write write
Parameters
approval_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_create_stages '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_create_stages '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_stages_get_count_8fe8

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/stages/$count.

Read read
Parameters
approval_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_stages_get_count_8fe8 '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_stages_get_count_8fe8 '{"approval_id":"example_approval_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_delete_stages

Delete navigation property stages for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/stages/{approvalStage-id}.

Write write
Parameters
approval_id, approval_stage_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_delete_stages '{"approval_id":"example_approval_id","approval_stage_id":"example_approval_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_delete_stages '{"approval_id":"example_approval_id","approval_stage_id":"example_approval_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_get_stages

Get stages from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/stages/{approvalStage-id}.

Read read
Parameters
approval_id, approval_stage_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_get_stages '{"approval_id":"example_approval_id","approval_stage_id":"example_approval_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_get_stages '{"approval_id":"example_approval_id","approval_stage_id":"example_approval_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_update_stages

Update the navigation property stages in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/stages/{approvalStage-id}.

Write write
Parameters
approval_id, approval_stage_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_update_stages '{"approval_id":"example_approval_id","approval_stage_id":"example_approval_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_update_stages '{"approval_id":"example_approval_id","approval_stage_id":"example_approval_stage_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_schedule_instances

List assignmentScheduleInstances\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleInstances.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_schedule_instances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_schedule_instances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_schedule_instances

Create new navigation property to assignmentScheduleInstances for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/privilegedAccess/group/assignmentScheduleInstances.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_schedule_instances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_schedule_instances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_count_8aba

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleInstances/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_count_8aba '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_count_8aba '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleInstances/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_schedule_instances

Delete navigation property assignmentScheduleInstances for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}.

Write write
Parameters
privileged_access_group_assignment_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_schedule_instances '{"privileged_access_group_assignment_schedule_instance_id":"example_privileged_access_group_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_schedule_instances '{"privileged_access_group_assignment_schedule_instance_id":"example_privileged_access_group_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_schedule_instances

Get privilegedAccessGroupAssignmentScheduleInstance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}.

Read read
Parameters
privileged_access_group_assignment_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_schedule_instances '{"privileged_access_group_assignment_schedule_instance_id":"example_privileged_access_group_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_schedule_instances '{"privileged_access_group_assignment_schedule_instance_id":"example_privileged_access_group_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_schedule_instances

Update the navigation property assignmentScheduleInstances in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}.

Write write
Parameters
privileged_access_group_assignment_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_schedule_instances '{"privileged_access_group_assignment_schedule_instance_id":"example_privileged_access_group_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_schedule_instances '{"privileged_access_group_assignment_schedule_instance_id":"example_privileged_access_group_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_activated_using

Get activatedUsing from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/activatedUsing.

Read read
Parameters
privileged_access_group_assignment_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_activated_using '{"privileged_access_group_assignment_schedule_instance_id":"example_privileged_access_group_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_activated_using '{"privileged_access_group_assignment_schedule_instance_id":"example_privileged_access_group_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_group

Get group from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group.

Read read
Parameters
privileged_access_group_assignment_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_group '{"privileged_access_group_assignment_schedule_instance_id":"example_privileged_access_group_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_group '{"privileged_access_group_assignment_schedule_instance_id":"example_privileged_access_group_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_group_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group/serviceProvisioningErrors.

Read read
Parameters
privileged_access_group_assignment_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_group_list_service_provisioning_errors '{"privileged_access_group_assignment_schedule_instance_id":"example_privileged_access_group_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_group_list_service_provisioning_errors '{"privileged_access_group_assignment_schedule_instance_id":"example_privileged_access_group_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_group_service_provisioning_errors_get_count_5e16

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group/serviceProvisioningErrors/$count.

Read read
Parameters
privileged_access_group_assignment_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_group_service_provisioning_errors_get_count_5e16 '{"privileged_access_group_assignment_schedule_instance_id":"example_privileged_access_group_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_group_service_provisioning_errors_get_count_5e16 '{"privileged_access_group_assignment_schedule_instance_id":"example_privileged_access_group_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_principal

Get principal from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/principal.

Read read
Parameters
privileged_access_group_assignment_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_principal '{"privileged_access_group_assignment_schedule_instance_id":"example_privileged_access_group_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_principal '{"privileged_access_group_assignment_schedule_instance_id":"example_privileged_access_group_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_schedule_requests

List assignmentScheduleRequests\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleRequests.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_schedule_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_schedule_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_schedule_requests

Create assignmentScheduleRequest\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/privilegedAccess/group/assignmentScheduleRequests.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_schedule_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_schedule_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_count_cd4f

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleRequests/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_count_cd4f '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_count_cd4f '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleRequests/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_schedule_requests

Delete navigation property assignmentScheduleRequests for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}.

Write write
Parameters
privileged_access_group_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_schedule_requests '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_schedule_requests '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_schedule_requests

Get privilegedAccessGroupAssignmentScheduleRequest\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}.

Read read
Parameters
privileged_access_group_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_schedule_requests '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_schedule_requests '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_schedule_requests

Update the navigation property assignmentScheduleRequests in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}.

Write write
Parameters
privileged_access_group_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_schedule_requests '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_schedule_requests '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_activated_using

Get activatedUsing from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/activatedUsing.

Read read
Parameters
privileged_access_group_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_activated_using '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_activated_using '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_privileged_access_group_assignment_schedule_request_cancel

Invoke action cancel\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/cancel.

Read read
Parameters
privileged_access_group_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_privileged_access_group_assignment_schedule_request_cancel '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_privileged_access_group_assignment_schedule_request_cancel '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_group

Get group from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group.

Read read
Parameters
privileged_access_group_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_group '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_group '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_group_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group/serviceProvisioningErrors.

Read read
Parameters
privileged_access_group_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_group_list_service_provisioning_errors '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_group_list_service_provisioning_errors '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_group_service_provisioning_errors_get_count_60a7

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group/serviceProvisioningErrors/$count.

Read read
Parameters
privileged_access_group_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_group_service_provisioning_errors_get_count_60a7 '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_group_service_provisioning_errors_get_count_60a7 '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_principal

Get principal from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/principal.

Read read
Parameters
privileged_access_group_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_principal '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_principal '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_target_schedule

Get targetSchedule from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/targetSchedule.

Read read
Parameters
privileged_access_group_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_target_schedule '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_target_schedule '{"privileged_access_group_assignment_schedule_request_id":"example_privileged_access_group_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_schedules

List assignmentSchedules\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentSchedules.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_schedules '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_schedules '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_schedules

Create new navigation property to assignmentSchedules for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/privilegedAccess/group/assignmentSchedules.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_schedules '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_schedules '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_count_c3b5

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentSchedules/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_count_c3b5 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_count_c3b5 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentSchedules/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_schedules

Delete navigation property assignmentSchedules for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}.

Write write
Parameters
privileged_access_group_assignment_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_schedules '{"privileged_access_group_assignment_schedule_id":"example_privileged_access_group_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_schedules '{"privileged_access_group_assignment_schedule_id":"example_privileged_access_group_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_schedules

Get privilegedAccessGroupAssignmentSchedule\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}.

Read read
Parameters
privileged_access_group_assignment_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_schedules '{"privileged_access_group_assignment_schedule_id":"example_privileged_access_group_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_schedules '{"privileged_access_group_assignment_schedule_id":"example_privileged_access_group_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_schedules

Update the navigation property assignmentSchedules in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}.

Write write
Parameters
privileged_access_group_assignment_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_schedules '{"privileged_access_group_assignment_schedule_id":"example_privileged_access_group_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_schedules '{"privileged_access_group_assignment_schedule_id":"example_privileged_access_group_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_activated_using

Get activatedUsing from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/activatedUsing.

Read read
Parameters
privileged_access_group_assignment_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_activated_using '{"privileged_access_group_assignment_schedule_id":"example_privileged_access_group_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_activated_using '{"privileged_access_group_assignment_schedule_id":"example_privileged_access_group_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_group

Get group from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group.

Read read
Parameters
privileged_access_group_assignment_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_group '{"privileged_access_group_assignment_schedule_id":"example_privileged_access_group_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_group '{"privileged_access_group_assignment_schedule_id":"example_privileged_access_group_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_group_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group/serviceProvisioningErrors.

Read read
Parameters
privileged_access_group_assignment_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_group_list_service_provisioning_errors '{"privileged_access_group_assignment_schedule_id":"example_privileged_access_group_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_group_list_service_provisioning_errors '{"privileged_access_group_assignment_schedule_id":"example_privileged_access_group_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_group_service_provisioning_errors_get_count_f144

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group/serviceProvisioningErrors/$count.

Read read
Parameters
privileged_access_group_assignment_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_group_service_provisioning_errors_get_count_f144 '{"privileged_access_group_assignment_schedule_id":"example_privileged_access_group_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_group_service_provisioning_errors_get_count_f144 '{"privileged_access_group_assignment_schedule_id":"example_privileged_access_group_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_principal

Get principal from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/principal.

Read read
Parameters
privileged_access_group_assignment_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_principal '{"privileged_access_group_assignment_schedule_id":"example_privileged_access_group_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_principal '{"privileged_access_group_assignment_schedule_id":"example_privileged_access_group_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_eligibility_schedule_instances

List eligibilityScheduleInstances\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilityScheduleInstances.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_eligibility_schedule_instances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_list_eligibility_schedule_instances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_eligibility_schedule_instances

Create new navigation property to eligibilityScheduleInstances for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/privilegedAccess/group/eligibilityScheduleInstances.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_eligibility_schedule_instances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_create_eligibility_schedule_instances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_get_count_d5bc

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_get_count_d5bc '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_get_count_d5bc '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_eligibility_schedule_instances

Delete navigation property eligibilityScheduleInstances for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}.

Write write
Parameters
privileged_access_group_eligibility_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_eligibility_schedule_instances '{"privileged_access_group_eligibility_schedule_instance_id":"example_privileged_access_group_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_delete_eligibility_schedule_instances '{"privileged_access_group_eligibility_schedule_instance_id":"example_privileged_access_group_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_eligibility_schedule_instances

Get privilegedAccessGroupEligibilityScheduleInstance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}.

Read read
Parameters
privileged_access_group_eligibility_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_eligibility_schedule_instances '{"privileged_access_group_eligibility_schedule_instance_id":"example_privileged_access_group_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_get_eligibility_schedule_instances '{"privileged_access_group_eligibility_schedule_instance_id":"example_privileged_access_group_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_eligibility_schedule_instances

Update the navigation property eligibilityScheduleInstances in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}.

Write write
Parameters
privileged_access_group_eligibility_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_eligibility_schedule_instances '{"privileged_access_group_eligibility_schedule_instance_id":"example_privileged_access_group_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_update_eligibility_schedule_instances '{"privileged_access_group_eligibility_schedule_instance_id":"example_privileged_access_group_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_get_group

Get group from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group.

Read read
Parameters
privileged_access_group_eligibility_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_get_group '{"privileged_access_group_eligibility_schedule_instance_id":"example_privileged_access_group_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_get_group '{"privileged_access_group_eligibility_schedule_instance_id":"example_privileged_access_group_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_group_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group/serviceProvisioningErrors.

Read read
Parameters
privileged_access_group_eligibility_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_group_list_service_provisioning_errors '{"privileged_access_group_eligibility_schedule_instance_id":"example_privileged_access_group_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_group_list_service_provisioning_errors '{"privileged_access_group_eligibility_schedule_instance_id":"example_privileged_access_group_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_group_service_provisioning_errors_get_count_ce50

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group/serviceProvisioningErrors/$count.

Read read
Parameters
privileged_access_group_eligibility_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_group_service_provisioning_errors_get_count_ce50 '{"privileged_access_group_eligibility_schedule_instance_id":"example_privileged_access_group_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_group_service_provisioning_errors_get_count_ce50 '{"privileged_access_group_eligibility_schedule_instance_id":"example_privileged_access_group_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_get_principal

Get principal from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/principal.

Read read
Parameters
privileged_access_group_eligibility_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_get_principal '{"privileged_access_group_eligibility_schedule_instance_id":"example_privileged_access_group_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_get_principal '{"privileged_access_group_eligibility_schedule_instance_id":"example_privileged_access_group_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_eligibility_schedule_requests

List eligibilityScheduleRequests\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilityScheduleRequests.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_eligibility_schedule_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_list_eligibility_schedule_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_eligibility_schedule_requests

Create eligibilityScheduleRequest\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/privilegedAccess/group/eligibilityScheduleRequests.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_eligibility_schedule_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_create_eligibility_schedule_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_count_e631

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_count_e631 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_count_e631 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_eligibility_schedule_requests

Delete navigation property eligibilityScheduleRequests for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}.

Write write
Parameters
privileged_access_group_eligibility_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_eligibility_schedule_requests '{"privileged_access_group_eligibility_schedule_request_id":"example_privileged_access_group_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_delete_eligibility_schedule_requests '{"privileged_access_group_eligibility_schedule_request_id":"example_privileged_access_group_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_eligibility_schedule_requests

Get privilegedAccessGroupEligibilityScheduleRequest\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}.

Read read
Parameters
privileged_access_group_eligibility_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_eligibility_schedule_requests '{"privileged_access_group_eligibility_schedule_request_id":"example_privileged_access_group_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_get_eligibility_schedule_requests '{"privileged_access_group_eligibility_schedule_request_id":"example_privileged_access_group_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_eligibility_schedule_requests

Update the navigation property eligibilityScheduleRequests in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}.

Write write
Parameters
privileged_access_group_eligibility_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_eligibility_schedule_requests '{"privileged_access_group_eligibility_schedule_request_id":"example_privileged_access_group_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_update_eligibility_schedule_requests '{"privileged_access_group_eligibility_schedule_request_id":"example_privileged_access_group_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_privileged_access_group_eligibility_schedule_request_cancel

Invoke action cancel\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/cancel.

Read read
Parameters
privileged_access_group_eligibility_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_privileged_access_group_eligibility_schedule_request_cancel '{"privileged_access_group_eligibility_schedule_request_id":"example_privileged_access_group_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_privileged_access_group_eligibility_schedule_request_cancel '{"privileged_access_group_eligibility_schedule_request_id":"example_privileged_access_group_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_group

Get group from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group.

Read read
Parameters
privileged_access_group_eligibility_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_group '{"privileged_access_group_eligibility_schedule_request_id":"example_privileged_access_group_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_group '{"privileged_access_group_eligibility_schedule_request_id":"example_privileged_access_group_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_group_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group/serviceProvisioningErrors.

Read read
Parameters
privileged_access_group_eligibility_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_group_list_service_provisioning_errors '{"privileged_access_group_eligibility_schedule_request_id":"example_privileged_access_group_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_group_list_service_provisioning_errors '{"privileged_access_group_eligibility_schedule_request_id":"example_privileged_access_group_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_group_service_provisioning_errors_get_count_c344

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group/serviceProvisioningErrors/$count.

Read read
Parameters
privileged_access_group_eligibility_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_group_service_provisioning_errors_get_count_c344 '{"privileged_access_group_eligibility_schedule_request_id":"example_privileged_access_group_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_group_service_provisioning_errors_get_count_c344 '{"privileged_access_group_eligibility_schedule_request_id":"example_privileged_access_group_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_principal

Get principal from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/principal.

Read read
Parameters
privileged_access_group_eligibility_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_principal '{"privileged_access_group_eligibility_schedule_request_id":"example_privileged_access_group_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_principal '{"privileged_access_group_eligibility_schedule_request_id":"example_privileged_access_group_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_target_schedule

Get targetSchedule from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/targetSchedule.

Read read
Parameters
privileged_access_group_eligibility_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_target_schedule '{"privileged_access_group_eligibility_schedule_request_id":"example_privileged_access_group_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_target_schedule '{"privileged_access_group_eligibility_schedule_request_id":"example_privileged_access_group_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_eligibility_schedules

List eligibilitySchedules\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilitySchedules.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_eligibility_schedules '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_list_eligibility_schedules '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_eligibility_schedules

Create new navigation property to eligibilitySchedules for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/privilegedAccess/group/eligibilitySchedules.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_eligibility_schedules '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_create_eligibility_schedules '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_get_count_dc2d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilitySchedules/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_get_count_dc2d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_get_count_dc2d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilitySchedules/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_eligibility_schedules

Delete navigation property eligibilitySchedules for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}.

Write write
Parameters
privileged_access_group_eligibility_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_eligibility_schedules '{"privileged_access_group_eligibility_schedule_id":"example_privileged_access_group_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_delete_eligibility_schedules '{"privileged_access_group_eligibility_schedule_id":"example_privileged_access_group_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_eligibility_schedules

Get privilegedAccessGroupEligibilitySchedule\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}.

Read read
Parameters
privileged_access_group_eligibility_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_eligibility_schedules '{"privileged_access_group_eligibility_schedule_id":"example_privileged_access_group_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_get_eligibility_schedules '{"privileged_access_group_eligibility_schedule_id":"example_privileged_access_group_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_eligibility_schedules

Update the navigation property eligibilitySchedules in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}.

Write write
Parameters
privileged_access_group_eligibility_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_eligibility_schedules '{"privileged_access_group_eligibility_schedule_id":"example_privileged_access_group_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_update_eligibility_schedules '{"privileged_access_group_eligibility_schedule_id":"example_privileged_access_group_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_get_group

Get group from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group.

Read read
Parameters
privileged_access_group_eligibility_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_get_group '{"privileged_access_group_eligibility_schedule_id":"example_privileged_access_group_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_get_group '{"privileged_access_group_eligibility_schedule_id":"example_privileged_access_group_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_group_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group/serviceProvisioningErrors.

Read read
Parameters
privileged_access_group_eligibility_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_group_list_service_provisioning_errors '{"privileged_access_group_eligibility_schedule_id":"example_privileged_access_group_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_group_list_service_provisioning_errors '{"privileged_access_group_eligibility_schedule_id":"example_privileged_access_group_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_group_service_provisioning_errors_get_count_b2c5

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group/serviceProvisioningErrors/$count.

Read read
Parameters
privileged_access_group_eligibility_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_group_service_provisioning_errors_get_count_b2c5 '{"privileged_access_group_eligibility_schedule_id":"example_privileged_access_group_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_group_service_provisioning_errors_get_count_b2c5 '{"privileged_access_group_eligibility_schedule_id":"example_privileged_access_group_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_get_principal

Get principal from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/principal.

Read read
Parameters
privileged_access_group_eligibility_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_get_principal '{"privileged_access_group_eligibility_schedule_id":"example_privileged_access_group_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_get_principal '{"privileged_access_group_eligibility_schedule_id":"example_privileged_access_group_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_delete_terms_of_use

Delete navigation property termsOfUse for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/termsOfUse.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_delete_terms_of_use '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_delete_terms_of_use '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_get_terms_of_use

Get termsOfUse from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_get_terms_of_use '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_get_terms_of_use '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_update_terms_of_use

Update the navigation property termsOfUse in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/termsOfUse.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_update_terms_of_use '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_update_terms_of_use '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_list_agreement_acceptances

Get agreementAcceptances from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreementAcceptances.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_list_agreement_acceptances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_list_agreement_acceptances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_create_agreement_acceptances

Create new navigation property to agreementAcceptances for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/termsOfUse/agreementAcceptances.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_create_agreement_acceptances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_create_agreement_acceptances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreement_acceptances_get_count_70d1

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreementAcceptances/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreement_acceptances_get_count_70d1 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreement_acceptances_get_count_70d1 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_delete_agreement_acceptances

Delete navigation property agreementAcceptances for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}.

Write write
Parameters
agreement_acceptance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_delete_agreement_acceptances '{"agreement_acceptance_id":"example_agreement_acceptance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_delete_agreement_acceptances '{"agreement_acceptance_id":"example_agreement_acceptance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_get_agreement_acceptances

Get agreementAcceptances from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}.

Read read
Parameters
agreement_acceptance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_get_agreement_acceptances '{"agreement_acceptance_id":"example_agreement_acceptance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_get_agreement_acceptances '{"agreement_acceptance_id":"example_agreement_acceptance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_update_agreement_acceptances

Update the navigation property agreementAcceptances in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}.

Write write
Parameters
agreement_acceptance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_update_agreement_acceptances '{"agreement_acceptance_id":"example_agreement_acceptance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_update_agreement_acceptances '{"agreement_acceptance_id":"example_agreement_acceptance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_list_agreements

List agreements\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_list_agreements '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_list_agreements '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_create_agreements

Create agreement\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/termsOfUse/agreements.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_create_agreements '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_create_agreements '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_get_count_7fcc

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_get_count_7fcc '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_get_count_7fcc '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_delete_agreements

Delete agreement\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/termsOfUse/agreements/{agreement-id}.

Write write
Parameters
agreement_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_delete_agreements '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_delete_agreements '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_get_agreements

Get agreement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements/{agreement-id}.

Read read
Parameters
agreement_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_get_agreements '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_get_agreements '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_update_agreements

Update agreement\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/termsOfUse/agreements/{agreement-id}.

Write write
Parameters
agreement_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_update_agreements '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_update_agreements '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_list_acceptances

List acceptances\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements/{agreement-id}/acceptances.

Read read
Parameters
agreement_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_list_acceptances '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_list_acceptances '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_create_acceptances

Create new navigation property to acceptances for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/termsOfUse/agreements/{agreement-id}/acceptances.

Write write
Parameters
agreement_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_create_acceptances '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_create_acceptances '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_acceptances_get_count_7e12

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements/{agreement-id}/acceptances/$count.

Read read
Parameters
agreement_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_acceptances_get_count_7e12 '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_acceptances_get_count_7e12 '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_delete_acceptances

Delete navigation property acceptances for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/termsOfUse/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}.

Write write
Parameters
agreement_id, agreement_acceptance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_delete_acceptances '{"agreement_id":"example_agreement_id","agreement_acceptance_id":"example_agreement_acceptance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_delete_acceptances '{"agreement_id":"example_agreement_id","agreement_acceptance_id":"example_agreement_acceptance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_get_acceptances

Get acceptances from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}.

Read read
Parameters
agreement_id, agreement_acceptance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_get_acceptances '{"agreement_id":"example_agreement_id","agreement_acceptance_id":"example_agreement_acceptance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_get_acceptances '{"agreement_id":"example_agreement_id","agreement_acceptance_id":"example_agreement_acceptance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_update_acceptances

Update the navigation property acceptances in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/termsOfUse/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}.

Write write
Parameters
agreement_id, agreement_acceptance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_update_acceptances '{"agreement_id":"example_agreement_id","agreement_acceptance_id":"example_agreement_acceptance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_update_acceptances '{"agreement_id":"example_agreement_id","agreement_acceptance_id":"example_agreement_acceptance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_delete_file

Delete navigation property file for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/termsOfUse/agreements/{agreement-id}/file.

Write write
Parameters
agreement_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_delete_file '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_delete_file '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_get_file

Get agreementFile\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements/{agreement-id}/file.

Read read
Parameters
agreement_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_get_file '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_get_file '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_update_file

Update the navigation property file in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/termsOfUse/agreements/{agreement-id}/file.

Write write
Parameters
agreement_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_update_file '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_update_file '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_list_localizations

Get localizations from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations.

Read read
Parameters
agreement_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_list_localizations '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_file_list_localizations '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_create_localizations

Create new navigation property to localizations for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations.

Write write
Parameters
agreement_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_create_localizations '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_file_create_localizations '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_get_count_d8c7

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/$count.

Read read
Parameters
agreement_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_get_count_d8c7 '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_get_count_d8c7 '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_delete_localizations

Delete navigation property localizations for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}.

Write write
Parameters
agreement_id, agreement_file_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_delete_localizations '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_file_delete_localizations '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_get_localizations

Get localizations from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}.

Read read
Parameters
agreement_id, agreement_file_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_get_localizations '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_file_get_localizations '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_update_localizations

Update the navigation property localizations in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}.

Write write
Parameters
agreement_id, agreement_file_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_update_localizations '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_file_update_localizations '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_list_versions

Get versions from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions.

Read read
Parameters
agreement_id, agreement_file_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_list_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_list_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_create_versions

Create new navigation property to versions for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions.

Write write
Parameters
agreement_id, agreement_file_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_create_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_create_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_versions_get_count_47c0

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/$count.

Read read
Parameters
agreement_id, agreement_file_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_versions_get_count_47c0 '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_versions_get_count_47c0 '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_delete_versions

Delete navigation property versions for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}.

Write write
Parameters
agreement_id, agreement_file_localization_id, agreement_file_version_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_delete_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","agreement_file_version_id":"example_agreement_file_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_delete_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","agreement_file_version_id":"example_agreement_file_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_get_versions

Get versions from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}.

Read read
Parameters
agreement_id, agreement_file_localization_id, agreement_file_version_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_get_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","agreement_file_version_id":"example_agreement_file_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_get_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","agreement_file_version_id":"example_agreement_file_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_update_versions

Update the navigation property versions in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}.

Write write
Parameters
agreement_id, agreement_file_localization_id, agreement_file_version_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_update_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","agreement_file_version_id":"example_agreement_file_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_update_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","agreement_file_version_id":"example_agreement_file_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_list_files

Get files from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements/{agreement-id}/files.

Read read
Parameters
agreement_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_list_files '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_list_files '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_create_files

Create agreementFileLocalization\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/termsOfUse/agreements/{agreement-id}/files.

Write write
Parameters
agreement_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_create_files '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_create_files '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_get_count_54ad

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements/{agreement-id}/files/$count.

Read read
Parameters
agreement_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_get_count_54ad '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_files_get_count_54ad '{"agreement_id":"example_agreement_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_delete_files

Delete navigation property files for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}.

Write write
Parameters
agreement_id, agreement_file_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_delete_files '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_delete_files '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_get_files

Get files from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}.

Read read
Parameters
agreement_id, agreement_file_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_get_files '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_get_files '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_update_files

Update the navigation property files in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}.

Write write
Parameters
agreement_id, agreement_file_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_update_files '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_update_files '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_list_versions

Get versions from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions.

Read read
Parameters
agreement_id, agreement_file_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_list_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_files_list_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_create_versions

Create new navigation property to versions for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions.

Write write
Parameters
agreement_id, agreement_file_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_create_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_files_create_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_versions_get_count_9b3e

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/$count.

Read read
Parameters
agreement_id, agreement_file_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_versions_get_count_9b3e '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_files_versions_get_count_9b3e '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_delete_versions

Delete navigation property versions for identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}.

Write write
Parameters
agreement_id, agreement_file_localization_id, agreement_file_version_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_delete_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","agreement_file_version_id":"example_agreement_file_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_files_delete_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","agreement_file_version_id":"example_agreement_file_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_get_versions

Get versions from identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}.

Read read
Parameters
agreement_id, agreement_file_localization_id, agreement_file_version_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_get_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","agreement_file_version_id":"example_agreement_file_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_files_get_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","agreement_file_version_id":"example_agreement_file_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_update_versions

Update the navigation property versions in identityGovernance\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}.

Write write
Parameters
agreement_id, agreement_file_localization_id, agreement_file_version_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_update_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","agreement_file_version_id":"example_agreement_file_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_governance_terms_of_use_agreements_files_update_versions '{"agreement_id":"example_agreement_id","agreement_file_localization_id":"example_agreement_file_localization_id","agreement_file_version_id":"example_agreement_file_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_identity_protection_root_get_identity_protection_root

Get identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_identity_protection_root_get_identity_protection_root '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_identity_protection_root_get_identity_protection_root '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_identity_protection_root_update_identity_protection_root

Update identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityProtection.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_identity_protection_root_update_identity_protection_root '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_identity_protection_root_update_identity_protection_root '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_list_risk_detections

List riskDetections\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection/riskDetections.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_list_risk_detections '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_list_risk_detections '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_create_risk_detections

Create new navigation property to riskDetections for identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityProtection/riskDetections.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_create_risk_detections '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_create_risk_detections '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risk_detections_get_count_ee19

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection/riskDetections/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risk_detections_get_count_ee19 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risk_detections_get_count_ee19 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_delete_risk_detections

Delete navigation property riskDetections for identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityProtection/riskDetections/{riskDetection-id}.

Write write
Parameters
risk_detection_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_delete_risk_detections '{"risk_detection_id":"example_risk_detection_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_delete_risk_detections '{"risk_detection_id":"example_risk_detection_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_get_risk_detections

Get riskDetection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection/riskDetections/{riskDetection-id}.

Read read
Parameters
risk_detection_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_get_risk_detections '{"risk_detection_id":"example_risk_detection_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_get_risk_detections '{"risk_detection_id":"example_risk_detection_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_update_risk_detections

Update the navigation property riskDetections in identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityProtection/riskDetections/{riskDetection-id}.

Write write
Parameters
risk_detection_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_update_risk_detections '{"risk_detection_id":"example_risk_detection_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_update_risk_detections '{"risk_detection_id":"example_risk_detection_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_list_risky_service_principals

List riskyServicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection/riskyServicePrincipals.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_list_risky_service_principals '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_list_risky_service_principals '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_create_risky_service_principals

Create new navigation property to riskyServicePrincipals for identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityProtection/riskyServicePrincipals.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_create_risky_service_principals '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_create_risky_service_principals '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_get_count_d335

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection/riskyServicePrincipals/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_get_count_d335 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_service_principals_get_count_d335 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_confirm_compromised

Invoke action confirmCompromised\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityProtection/riskyServicePrincipals/confirmCompromised.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_confirm_compromised '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_service_principals_confirm_compromised '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_dismiss

Invoke action dismiss\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityProtection/riskyServicePrincipals/dismiss.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_dismiss '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_service_principals_dismiss '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_delete_risky_service_principals

Delete navigation property riskyServicePrincipals for identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}.

Write write
Parameters
risky_service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_delete_risky_service_principals '{"risky_service_principal_id":"example_risky_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_delete_risky_service_principals '{"risky_service_principal_id":"example_risky_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_get_risky_service_principals

Get riskyServicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}.

Read read
Parameters
risky_service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_get_risky_service_principals '{"risky_service_principal_id":"example_risky_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_get_risky_service_principals '{"risky_service_principal_id":"example_risky_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_update_risky_service_principals

Update the navigation property riskyServicePrincipals in identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}.

Write write
Parameters
risky_service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_update_risky_service_principals '{"risky_service_principal_id":"example_risky_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_update_risky_service_principals '{"risky_service_principal_id":"example_risky_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_list_history

List history (risk history of riskyServicePrincipal)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history.

Read read
Parameters
risky_service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_list_history '{"risky_service_principal_id":"example_risky_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_service_principals_list_history '{"risky_service_principal_id":"example_risky_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_create_history

Create new navigation property to history for identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history.

Write write
Parameters
risky_service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_create_history '{"risky_service_principal_id":"example_risky_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_service_principals_create_history '{"risky_service_principal_id":"example_risky_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_history_get_count_818f

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/$count.

Read read
Parameters
risky_service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_history_get_count_818f '{"risky_service_principal_id":"example_risky_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_service_principals_history_get_count_818f '{"risky_service_principal_id":"example_risky_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_delete_history

Delete navigation property history for identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/{riskyServicePrincipalHistoryItem-id}.

Write write
Parameters
risky_service_principal_id, risky_service_principal_history_item_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_delete_history '{"risky_service_principal_id":"example_risky_service_principal_id","risky_service_principal_history_item_id":"example_risky_service_principal_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_service_principals_delete_history '{"risky_service_principal_id":"example_risky_service_principal_id","risky_service_principal_history_item_id":"example_risky_service_principal_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_get_history

Get history from identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/{riskyServicePrincipalHistoryItem-id}.

Read read
Parameters
risky_service_principal_id, risky_service_principal_history_item_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_get_history '{"risky_service_principal_id":"example_risky_service_principal_id","risky_service_principal_history_item_id":"example_risky_service_principal_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_service_principals_get_history '{"risky_service_principal_id":"example_risky_service_principal_id","risky_service_principal_history_item_id":"example_risky_service_principal_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_update_history

Update the navigation property history in identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/{riskyServicePrincipalHistoryItem-id}.

Write write
Parameters
risky_service_principal_id, risky_service_principal_history_item_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_update_history '{"risky_service_principal_id":"example_risky_service_principal_id","risky_service_principal_history_item_id":"example_risky_service_principal_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_service_principals_update_history '{"risky_service_principal_id":"example_risky_service_principal_id","risky_service_principal_history_item_id":"example_risky_service_principal_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_list_risky_users

List riskyUsers\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection/riskyUsers.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_list_risky_users '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_list_risky_users '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_create_risky_users

Create new navigation property to riskyUsers for identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityProtection/riskyUsers.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_create_risky_users '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_create_risky_users '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_get_count_2b7d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection/riskyUsers/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_get_count_2b7d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_users_get_count_2b7d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_confirm_compromised

Invoke action confirmCompromised\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityProtection/riskyUsers/confirmCompromised.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_confirm_compromised '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_users_confirm_compromised '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_confirm_safe

Invoke action confirmSafe\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityProtection/riskyUsers/confirmSafe.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_confirm_safe '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_users_confirm_safe '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_dismiss

Invoke action dismiss\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityProtection/riskyUsers/dismiss.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_dismiss '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_users_dismiss '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_delete_risky_users

Delete navigation property riskyUsers for identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityProtection/riskyUsers/{riskyUser-id}.

Write write
Parameters
risky_user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_delete_risky_users '{"risky_user_id":"example_risky_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_delete_risky_users '{"risky_user_id":"example_risky_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_get_risky_users

Get riskyUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection/riskyUsers/{riskyUser-id}.

Read read
Parameters
risky_user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_get_risky_users '{"risky_user_id":"example_risky_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_get_risky_users '{"risky_user_id":"example_risky_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_update_risky_users

Update the navigation property riskyUsers in identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityProtection/riskyUsers/{riskyUser-id}.

Write write
Parameters
risky_user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_update_risky_users '{"risky_user_id":"example_risky_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_update_risky_users '{"risky_user_id":"example_risky_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_list_history

List history of riskyUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection/riskyUsers/{riskyUser-id}/history.

Read read
Parameters
risky_user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_list_history '{"risky_user_id":"example_risky_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_users_list_history '{"risky_user_id":"example_risky_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_create_history

Create new navigation property to history for identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityProtection/riskyUsers/{riskyUser-id}/history.

Write write
Parameters
risky_user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_create_history '{"risky_user_id":"example_risky_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_users_create_history '{"risky_user_id":"example_risky_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_history_get_count_33a2

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection/riskyUsers/{riskyUser-id}/history/$count.

Read read
Parameters
risky_user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_history_get_count_33a2 '{"risky_user_id":"example_risky_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_users_history_get_count_33a2 '{"risky_user_id":"example_risky_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_delete_history

Delete navigation property history for identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityProtection/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}.

Write write
Parameters
risky_user_id, risky_user_history_item_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_delete_history '{"risky_user_id":"example_risky_user_id","risky_user_history_item_id":"example_risky_user_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_users_delete_history '{"risky_user_id":"example_risky_user_id","risky_user_history_item_id":"example_risky_user_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_get_history

Get history from identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}.

Read read
Parameters
risky_user_id, risky_user_history_item_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_get_history '{"risky_user_id":"example_risky_user_id","risky_user_history_item_id":"example_risky_user_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_users_get_history '{"risky_user_id":"example_risky_user_id","risky_user_history_item_id":"example_risky_user_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_update_history

Update the navigation property history in identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityProtection/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}.

Write write
Parameters
risky_user_id, risky_user_history_item_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_update_history '{"risky_user_id":"example_risky_user_id","risky_user_history_item_id":"example_risky_user_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_risky_users_update_history '{"risky_user_id":"example_risky_user_id","risky_user_history_item_id":"example_risky_user_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_list_service_principal_risk_detections

List servicePrincipalRiskDetections\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection/servicePrincipalRiskDetections.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_list_service_principal_risk_detections '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_list_service_principal_risk_detections '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_create_service_principal_risk_detections

Create new navigation property to servicePrincipalRiskDetections for identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: POST /identityProtection/servicePrincipalRiskDetections.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_create_service_principal_risk_detections '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_create_service_principal_risk_detections '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_service_principal_risk_detections_get_count_1bc5

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection/servicePrincipalRiskDetections/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_service_principal_risk_detections_get_count_1bc5 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_service_principal_risk_detections_get_count_1bc5 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_delete_service_principal_risk_detections

Delete navigation property servicePrincipalRiskDetections for identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetection-id}.

Write write
Parameters
service_principal_risk_detection_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_delete_service_principal_risk_detections '{"service_principal_risk_detection_id":"example_service_principal_risk_detection_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_delete_service_principal_risk_detections '{"service_principal_risk_detection_id":"example_service_principal_risk_detection_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_get_service_principal_risk_detections

Get servicePrincipalRiskDetection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetection-id}.

Read read
Parameters
service_principal_risk_detection_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_get_service_principal_risk_detections '{"service_principal_risk_detection_id":"example_service_principal_risk_detection_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_get_service_principal_risk_detections '{"service_principal_risk_detection_id":"example_service_principal_risk_detection_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_identity_protection_update_service_principal_risk_detections

Update the navigation property servicePrincipalRiskDetections in identityProtection\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetection-id}.

Write write
Parameters
service_principal_risk_detection_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_identity_protection_update_service_principal_risk_detections '{"service_principal_risk_detection_id":"example_service_principal_risk_detection_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_identity_protection_update_service_principal_risk_detections '{"service_principal_risk_detection_id":"example_service_principal_risk_detection_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_invitations_invitation_list_invitation

Get entities from invitations\n\nOfficial Microsoft Graph v1.0 endpoint: GET /invitations.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_invitations_invitation_list_invitation '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_invitations_invitation_list_invitation '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_invitations_invitation_create_invitation

Create invitation\n\nOfficial Microsoft Graph v1.0 endpoint: POST /invitations.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_invitations_invitation_create_invitation '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_invitations_invitation_create_invitation '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_invitations_get_count_8ff1

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /invitations/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_invitations_get_count_8ff1 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_invitations_get_count_8ff1 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_invitations_get_invited_user

Get invitedUser from invitations\n\nOfficial Microsoft Graph v1.0 endpoint: GET /invitations/invitedUser.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_invitations_get_invited_user '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_invitations_get_invited_user '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_invitations_invited_user_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /invitations/invitedUser/serviceProvisioningErrors.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_invitations_invited_user_list_service_provisioning_errors '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_invitations_invited_user_list_service_provisioning_errors '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_invitations_invited_user_service_provisioning_errors_get_count_df29

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /invitations/invitedUser/serviceProvisioningErrors/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_invitations_invited_user_service_provisioning_errors_get_count_df29 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_invitations_invited_user_service_provisioning_errors_get_count_df29 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_invitations_list_invited_user_sponsors

Get invitedUserSponsors from invitations\n\nOfficial Microsoft Graph v1.0 endpoint: GET /invitations/invitedUserSponsors.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_invitations_list_invited_user_sponsors '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_invitations_list_invited_user_sponsors '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_invitations_invited_user_sponsors_get_count_648d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /invitations/invitedUserSponsors/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_invitations_invited_user_sponsors_get_count_648d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_invitations_invited_user_sponsors_get_count_648d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_invitations_get_invited_user_sponsors

Get invitedUserSponsors from invitations\n\nOfficial Microsoft Graph v1.0 endpoint: GET /invitations/invitedUserSponsors/{directoryObject-id}.

Read read
Parameters
directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_invitations_get_invited_user_sponsors '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_invitations_get_invited_user_sponsors '{"directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_list_oauth2_permission_grant

List oauth2PermissionGrants (delegated permission grants)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /oauth2PermissionGrants.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_list_oauth2_permission_grant '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_list_oauth2_permission_grant '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_create_oauth2_permission_grant

Create oAuth2PermissionGrant (a delegated permission grant)\n\nOfficial Microsoft Graph v1.0 endpoint: POST /oauth2PermissionGrants.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_create_oauth2_permission_grant '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_create_oauth2_permission_grant '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_get_count_8287

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /oauth2PermissionGrants/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_get_count_8287 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_oauth2_permission_grants_get_count_8287 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_delta

Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /oauth2PermissionGrants/delta().

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_oauth2_permission_grants_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_delete_oauth2_permission_grant

Delete oAuth2PermissionGrant (a delegated permission grant)\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /oauth2PermissionGrants/{oAuth2PermissionGrant-id}.

Write write
Parameters
o_auth2_permission_grant_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_delete_oauth2_permission_grant '{"o_auth2_permission_grant_id":"example_o_auth2_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_delete_oauth2_permission_grant '{"o_auth2_permission_grant_id":"example_o_auth2_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_get_oauth2_permission_grant

Get oAuth2PermissionGrant (a delegated permission grant)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /oauth2PermissionGrants/{oAuth2PermissionGrant-id}.

Read read
Parameters
o_auth2_permission_grant_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_get_oauth2_permission_grant '{"o_auth2_permission_grant_id":"example_o_auth2_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_get_oauth2_permission_grant '{"o_auth2_permission_grant_id":"example_o_auth2_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_update_oauth2_permission_grant

Update a delegated permission grant (oAuth2PermissionGrant)\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /oauth2PermissionGrants/{oAuth2PermissionGrant-id}.

Write write
Parameters
o_auth2_permission_grant_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_update_oauth2_permission_grant '{"o_auth2_permission_grant_id":"example_o_auth2_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_update_oauth2_permission_grant '{"o_auth2_permission_grant_id":"example_o_auth2_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_organization_list_organization

List organizations\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_organization_list_organization '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_organization_list_organization '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_organization_organization_create_organization

Add new entity to organization\n\nOfficial Microsoft Graph v1.0 endpoint: POST /organization.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_organization_create_organization '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_organization_create_organization '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_organization_get_count_9453

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_get_count_9453 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_get_count_9453 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_organization_delta

Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/delta().

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_organization_get_available_extension_properties

Invoke action getAvailableExtensionProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /organization/getAvailableExtensionProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_organization_get_by_ids

Invoke action getByIds\n\nOfficial Microsoft Graph v1.0 endpoint: POST /organization/getByIds.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_organization_validate_properties

Invoke action validateProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /organization/validateProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_organization_organization_delete_organization

Delete entity from organization\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /organization/{organization-id}.

Write write
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_organization_delete_organization '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_organization_delete_organization '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_organization_get_organization

Get organization\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}.

Read read
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_organization_get_organization '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_organization_get_organization '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_organization_update_organization

Update organization\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /organization/{organization-id}.

Write write
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_organization_update_organization '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_organization_update_organization '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_delete_branding

Delete organizationalBranding\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /organization/{organization-id}/branding.

Write write
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_delete_branding '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_delete_branding '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_get_branding

Get organizationalBranding\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}/branding.

Read read
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_get_branding '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_get_branding '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_update_branding

Update organizationalBranding\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /organization/{organization-id}/branding.

Write write
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_update_branding '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_update_branding '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_delete_branding_background_image

Delete backgroundImage for the navigation property branding in organization\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /organization/{organization-id}/branding/backgroundImage.

Write write
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_delete_branding_background_image '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_delete_branding_background_image '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_get_branding_background_image

Get backgroundImage for the navigation property branding from organization\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}/branding/backgroundImage.

Read read
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_get_branding_background_image '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_get_branding_background_image '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_update_branding_background_image

Update backgroundImage for the navigation property branding in organization\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /organization/{organization-id}/branding/backgroundImage.

Write write
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_update_branding_background_image '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_update_branding_background_image '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_delete_branding_custom_css

Delete customCSS for the navigation property branding in organization\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /organization/{organization-id}/branding/customCSS.

Write write
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_delete_branding_custom_css '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_delete_branding_custom_css '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_get_branding_custom_css

Get customCSS for the navigation property branding from organization\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}/branding/customCSS.

Read read
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_get_branding_custom_css '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_get_branding_custom_css '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_update_branding_custom_css

Update customCSS for the navigation property branding in organization\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /organization/{organization-id}/branding/customCSS.

Write write
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_update_branding_custom_css '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_update_branding_custom_css '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_delete_branding_favicon

Delete favicon for the navigation property branding in organization\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /organization/{organization-id}/branding/favicon.

Write write
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_delete_branding_favicon '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_delete_branding_favicon '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_get_branding_favicon

Get favicon for the navigation property branding from organization\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}/branding/favicon.

Read read
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_get_branding_favicon '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_get_branding_favicon '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_update_branding_favicon

Update favicon for the navigation property branding in organization\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /organization/{organization-id}/branding/favicon.

Write write
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_update_branding_favicon '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_update_branding_favicon '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_branding_list_localizations

List localizations\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}/branding/localizations.

Read read
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_branding_list_localizations '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_branding_list_localizations '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_branding_create_localizations

Create organizationalBrandingLocalization\n\nOfficial Microsoft Graph v1.0 endpoint: POST /organization/{organization-id}/branding/localizations.

Write write
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_branding_create_localizations '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_branding_create_localizations '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_branding_localizations_get_count_e39f

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}/branding/localizations/$count.

Read read
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_branding_localizations_get_count_e39f '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_branding_localizations_get_count_e39f '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations

Delete organizationalBrandingLocalization\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}.

Write write
Parameters
organization_id, organizational_branding_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_branding_delete_localizations '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations

Get organizationalBrandingLocalization\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}.

Read read
Parameters
organization_id, organizational_branding_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_branding_get_localizations '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations

Update organizationalBrandingLocalization\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}.

Write write
Parameters
organization_id, organizational_branding_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_branding_update_localizations '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations_background_image

Delete backgroundImage for the navigation property localizations in organization\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/backgroundImage.

Write write
Parameters
organization_id, organizational_branding_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations_background_image '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_branding_delete_localizations_background_image '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations_background_image

Get backgroundImage for the navigation property localizations from organization\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/backgroundImage.

Read read
Parameters
organization_id, organizational_branding_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations_background_image '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_branding_get_localizations_background_image '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations_background_image

Update backgroundImage for the navigation property localizations in organization\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/backgroundImage.

Write write
Parameters
organization_id, organizational_branding_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations_background_image '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_branding_update_localizations_background_image '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations_custom_css

Delete customCSS for the navigation property localizations in organization\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/customCSS.

Write write
Parameters
organization_id, organizational_branding_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations_custom_css '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_branding_delete_localizations_custom_css '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations_custom_css

Get customCSS for the navigation property localizations from organization\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/customCSS.

Read read
Parameters
organization_id, organizational_branding_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations_custom_css '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_branding_get_localizations_custom_css '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations_custom_css

Update customCSS for the navigation property localizations in organization\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/customCSS.

Write write
Parameters
organization_id, organizational_branding_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations_custom_css '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_branding_update_localizations_custom_css '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations_favicon

Delete favicon for the navigation property localizations in organization\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/favicon.

Write write
Parameters
organization_id, organizational_branding_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations_favicon '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_branding_delete_localizations_favicon '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations_favicon

Get favicon for the navigation property localizations from organization\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/favicon.

Read read
Parameters
organization_id, organizational_branding_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations_favicon '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_branding_get_localizations_favicon '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations_favicon

Update favicon for the navigation property localizations in organization\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/favicon.

Write write
Parameters
organization_id, organizational_branding_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations_favicon '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_branding_update_localizations_favicon '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations_square_logo_dark

Delete squareLogoDark for the navigation property localizations in organization\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogoDark.

Write write
Parameters
organization_id, organizational_branding_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations_square_logo_dark '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_branding_delete_localizations_square_logo_dark '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations_square_logo_dark

Get squareLogoDark for the navigation property localizations from organization\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogoDark.

Read read
Parameters
organization_id, organizational_branding_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations_square_logo_dark '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_branding_get_localizations_square_logo_dark '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations_square_logo_dark

Update squareLogoDark for the navigation property localizations in organization\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogoDark.

Write write
Parameters
organization_id, organizational_branding_localization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations_square_logo_dark '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_branding_update_localizations_square_logo_dark '{"organization_id":"example_organization_id","organizational_branding_localization_id":"example_organizational_branding_localization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_delete_branding_square_logo_dark

Delete squareLogoDark for the navigation property branding in organization\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /organization/{organization-id}/branding/squareLogoDark.

Write write
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_delete_branding_square_logo_dark '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_delete_branding_square_logo_dark '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_get_branding_square_logo_dark

Get squareLogoDark for the navigation property branding from organization\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}/branding/squareLogoDark.

Read read
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_get_branding_square_logo_dark '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_get_branding_square_logo_dark '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_update_branding_square_logo_dark

Update squareLogoDark for the navigation property branding in organization\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /organization/{organization-id}/branding/squareLogoDark.

Write write
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_update_branding_square_logo_dark '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_update_branding_square_logo_dark '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_list_certificate_based_auth_configuration

List certificateBasedAuthConfigurations\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}/certificateBasedAuthConfiguration.

Read read
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_list_certificate_based_auth_configuration '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_list_certificate_based_auth_configuration '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_create_certificate_based_auth_configuration

Create certificateBasedAuthConfiguration\n\nOfficial Microsoft Graph v1.0 endpoint: POST /organization/{organization-id}/certificateBasedAuthConfiguration.

Write write
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_create_certificate_based_auth_configuration '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_create_certificate_based_auth_configuration '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_certificate_based_auth_configuration_get_count_8262

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}/certificateBasedAuthConfiguration/$count.

Read read
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_certificate_based_auth_configuration_get_count_8262 '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_certificate_based_auth_configuration_get_count_8262 '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_delete_certificate_based_auth_configuration

Delete certificateBasedAuthConfiguration\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /organization/{organization-id}/certificateBasedAuthConfiguration/{certificateBasedAuthConfiguration-id}.

Write write
Parameters
organization_id, certificate_based_auth_configuration_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_delete_certificate_based_auth_configuration '{"organization_id":"example_organization_id","certificate_based_auth_configuration_id":"example_certificate_based_auth_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_delete_certificate_based_auth_configuration '{"organization_id":"example_organization_id","certificate_based_auth_configuration_id":"example_certificate_based_auth_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_get_certificate_based_auth_configuration

Get certificateBasedAuthConfiguration\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}/certificateBasedAuthConfiguration/{certificateBasedAuthConfiguration-id}.

Read read
Parameters
organization_id, certificate_based_auth_configuration_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_get_certificate_based_auth_configuration '{"organization_id":"example_organization_id","certificate_based_auth_configuration_id":"example_certificate_based_auth_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_get_certificate_based_auth_configuration '{"organization_id":"example_organization_id","certificate_based_auth_configuration_id":"example_certificate_based_auth_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_organization_check_member_groups

Invoke action checkMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /organization/{organization-id}/checkMemberGroups.

Read read
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_organization_check_member_groups '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_organization_check_member_groups '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_organization_check_member_objects

Invoke action checkMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /organization/{organization-id}/checkMemberObjects.

Read read
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_organization_check_member_objects '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_organization_check_member_objects '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_list_extensions

Get extensions from organization\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}/extensions.

Read read
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_list_extensions '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_list_extensions '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_create_extensions

Create new navigation property to extensions for organization\n\nOfficial Microsoft Graph v1.0 endpoint: POST /organization/{organization-id}/extensions.

Write write
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_create_extensions '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_create_extensions '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_extensions_get_count_bee2

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}/extensions/$count.

Read read
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_extensions_get_count_bee2 '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_extensions_get_count_bee2 '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_delete_extensions

Delete navigation property extensions for organization\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /organization/{organization-id}/extensions/{extension-id}.

Write write
Parameters
organization_id, extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_delete_extensions '{"organization_id":"example_organization_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_delete_extensions '{"organization_id":"example_organization_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_get_extensions

Get extensions from organization\n\nOfficial Microsoft Graph v1.0 endpoint: GET /organization/{organization-id}/extensions/{extension-id}.

Read read
Parameters
organization_id, extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_get_extensions '{"organization_id":"example_organization_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_get_extensions '{"organization_id":"example_organization_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_update_extensions

Update the navigation property extensions in organization\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /organization/{organization-id}/extensions/{extension-id}.

Write write
Parameters
organization_id, extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_update_extensions '{"organization_id":"example_organization_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_update_extensions '{"organization_id":"example_organization_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_organization_organization_get_member_groups

Invoke action getMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /organization/{organization-id}/getMemberGroups.

Read read
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_organization_get_member_groups '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_organization_get_member_groups '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_organization_get_member_objects

Invoke action getMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /organization/{organization-id}/getMemberObjects.

Read read
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_organization_get_member_objects '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_organization_get_member_objects '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_organization_restore

Invoke action restore\n\nOfficial Microsoft Graph v1.0 endpoint: POST /organization/{organization-id}/restore.

Read read
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_organization_restore '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_organization_restore '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_organization_organization_set_mobile_device_management_authority

Invoke action setMobileDeviceManagementAuthority\n\nOfficial Microsoft Graph v1.0 endpoint: POST /organization/{organization-id}/setMobileDeviceManagementAuthority.

Read read
Parameters
organization_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_organization_organization_set_mobile_device_management_authority '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_organization_organization_set_mobile_device_management_authority '{"organization_id":"example_organization_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_policy_root_get_policy_root

Get policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_policy_root_get_policy_root '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_policy_root_get_policy_root '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_policy_root_update_policy_root

Update policies\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_policy_root_update_policy_root '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_policy_root_update_policy_root '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_list_activity_based_timeout_policies

List activityBasedTimeoutPolicies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/activityBasedTimeoutPolicies.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_list_activity_based_timeout_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_list_activity_based_timeout_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_create_activity_based_timeout_policies

Create activityBasedTimeoutPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/activityBasedTimeoutPolicies.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_create_activity_based_timeout_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_create_activity_based_timeout_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_activity_based_timeout_policies_get_count_1f03

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/activityBasedTimeoutPolicies/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_activity_based_timeout_policies_get_count_1f03 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_activity_based_timeout_policies_get_count_1f03 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_activity_based_timeout_policies

Delete activityBasedTimeoutPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}.

Write write
Parameters
activity_based_timeout_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_activity_based_timeout_policies '{"activity_based_timeout_policy_id":"example_activity_based_timeout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_activity_based_timeout_policies '{"activity_based_timeout_policy_id":"example_activity_based_timeout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_activity_based_timeout_policies

Get activityBasedTimeoutPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}.

Read read
Parameters
activity_based_timeout_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_activity_based_timeout_policies '{"activity_based_timeout_policy_id":"example_activity_based_timeout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_activity_based_timeout_policies '{"activity_based_timeout_policy_id":"example_activity_based_timeout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_activity_based_timeout_policies

Update activitybasedtimeoutpolicy\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}.

Write write
Parameters
activity_based_timeout_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_activity_based_timeout_policies '{"activity_based_timeout_policy_id":"example_activity_based_timeout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_activity_based_timeout_policies '{"activity_based_timeout_policy_id":"example_activity_based_timeout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_activity_based_timeout_policies_list_applies_to

Get appliesTo from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo.

Read read
Parameters
activity_based_timeout_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_activity_based_timeout_policies_list_applies_to '{"activity_based_timeout_policy_id":"example_activity_based_timeout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_activity_based_timeout_policies_list_applies_to '{"activity_based_timeout_policy_id":"example_activity_based_timeout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_activity_based_timeout_policies_applies_to_get_count_f5ce

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo/$count.

Read read
Parameters
activity_based_timeout_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_activity_based_timeout_policies_applies_to_get_count_f5ce '{"activity_based_timeout_policy_id":"example_activity_based_timeout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_activity_based_timeout_policies_applies_to_get_count_f5ce '{"activity_based_timeout_policy_id":"example_activity_based_timeout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_activity_based_timeout_policies_get_applies_to

Get appliesTo from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo/{directoryObject-id}.

Read read
Parameters
activity_based_timeout_policy_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_activity_based_timeout_policies_get_applies_to '{"activity_based_timeout_policy_id":"example_activity_based_timeout_policy_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_activity_based_timeout_policies_get_applies_to '{"activity_based_timeout_policy_id":"example_activity_based_timeout_policy_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_admin_consent_request_policy

Delete navigation property adminConsentRequestPolicy for policies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/adminConsentRequestPolicy.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_admin_consent_request_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_admin_consent_request_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_admin_consent_request_policy

Get adminConsentRequestPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/adminConsentRequestPolicy.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_admin_consent_request_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_admin_consent_request_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_admin_consent_request_policy

Update adminConsentRequestPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/adminConsentRequestPolicy.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_admin_consent_request_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_admin_consent_request_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_list_app_management_policies

List appManagementPolicies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/appManagementPolicies.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_list_app_management_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_list_app_management_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_create_app_management_policies

Create appManagementPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/appManagementPolicies.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_create_app_management_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_create_app_management_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_app_management_policies_get_count_c99e

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/appManagementPolicies/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_app_management_policies_get_count_c99e '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_app_management_policies_get_count_c99e '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_app_management_policies

Delete appManagementPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/appManagementPolicies/{appManagementPolicy-id}.

Write write
Parameters
app_management_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_app_management_policies '{"app_management_policy_id":"example_app_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_app_management_policies '{"app_management_policy_id":"example_app_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_app_management_policies

Get appManagementPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/appManagementPolicies/{appManagementPolicy-id}.

Read read
Parameters
app_management_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_app_management_policies '{"app_management_policy_id":"example_app_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_app_management_policies '{"app_management_policy_id":"example_app_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_app_management_policies

Update appManagementPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/appManagementPolicies/{appManagementPolicy-id}.

Write write
Parameters
app_management_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_app_management_policies '{"app_management_policy_id":"example_app_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_app_management_policies '{"app_management_policy_id":"example_app_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_app_management_policies_list_applies_to

List appliesTo\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo.

Read read
Parameters
app_management_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_app_management_policies_list_applies_to '{"app_management_policy_id":"example_app_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_app_management_policies_list_applies_to '{"app_management_policy_id":"example_app_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_app_management_policies_applies_to_get_count_b064

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo/$count.

Read read
Parameters
app_management_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_app_management_policies_applies_to_get_count_b064 '{"app_management_policy_id":"example_app_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_app_management_policies_applies_to_get_count_b064 '{"app_management_policy_id":"example_app_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_app_management_policies_get_applies_to

Get appliesTo from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo/{directoryObject-id}.

Read read
Parameters
app_management_policy_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_app_management_policies_get_applies_to '{"app_management_policy_id":"example_app_management_policy_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_app_management_policies_get_applies_to '{"app_management_policy_id":"example_app_management_policy_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_authentication_flows_policy

Delete navigation property authenticationFlowsPolicy for policies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/authenticationFlowsPolicy.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_authentication_flows_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_authentication_flows_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_authentication_flows_policy

Get authenticationFlowsPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/authenticationFlowsPolicy.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_authentication_flows_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_authentication_flows_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_authentication_flows_policy

Update authenticationFlowsPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/authenticationFlowsPolicy.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_authentication_flows_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_authentication_flows_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_authentication_methods_policy

Delete navigation property authenticationMethodsPolicy for policies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/authenticationMethodsPolicy.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_authentication_methods_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_authentication_methods_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_authentication_methods_policy

Get authenticationMethodsPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/authenticationMethodsPolicy.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_authentication_methods_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_authentication_methods_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_authentication_methods_policy

Update authenticationMethodsPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/authenticationMethodsPolicy.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_authentication_methods_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_authentication_methods_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_list_authentication_method_configurations

Get externalAuthenticationMethodConfiguration\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/authenticationMethodsPolicy/authenticationMethodConfigurations.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_list_authentication_method_configurations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_authentication_methods_policy_list_authentication_method_configurations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_create_authentication_method_configurations

Create new navigation property to authenticationMethodConfigurations for policies\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/authenticationMethodsPolicy/authenticationMethodConfigurations.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_create_authentication_method_configurations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_authentication_methods_policy_create_authentication_method_configurations '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_authentication_method_configurations_get_count_e541

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/authenticationMethodsPolicy/authenticationMethodConfigurations/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_authentication_method_configurations_get_count_e541 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_authentication_methods_policy_authentication_method_configurations_get_count_e541 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_delete_authentication_method_configurations

Delete externalAuthenticationMethodConfiguration\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}.

Write write
Parameters
authentication_method_configuration_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_delete_authentication_method_configurations '{"authentication_method_configuration_id":"example_authentication_method_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_authentication_methods_policy_delete_authentication_method_configurations '{"authentication_method_configuration_id":"example_authentication_method_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_get_authentication_method_configurations

Get externalAuthenticationMethodConfiguration\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}.

Read read
Parameters
authentication_method_configuration_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_get_authentication_method_configurations '{"authentication_method_configuration_id":"example_authentication_method_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_authentication_methods_policy_get_authentication_method_configurations '{"authentication_method_configuration_id":"example_authentication_method_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_update_authentication_method_configurations

Update externalAuthenticationMethodConfiguration\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}.

Write write
Parameters
authentication_method_configuration_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_update_authentication_method_configurations '{"authentication_method_configuration_id":"example_authentication_method_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_authentication_methods_policy_update_authentication_method_configurations '{"authentication_method_configuration_id":"example_authentication_method_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_list_authentication_strength_policies

List authenticationStrengthPolicies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/authenticationStrengthPolicies.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_list_authentication_strength_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_list_authentication_strength_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_create_authentication_strength_policies

Create authenticationStrengthPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/authenticationStrengthPolicies.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_create_authentication_strength_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_create_authentication_strength_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_get_count_db73

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/authenticationStrengthPolicies/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_get_count_db73 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_authentication_strength_policies_get_count_db73 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_authentication_strength_policies

Delete authenticationStrengthPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}.

Write write
Parameters
authentication_strength_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_authentication_strength_policies '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_authentication_strength_policies '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_authentication_strength_policies

Get authenticationStrengthPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}.

Read read
Parameters
authentication_strength_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_authentication_strength_policies '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_authentication_strength_policies '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_authentication_strength_policies

Update authenticationStrengthPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}.

Write write
Parameters
authentication_strength_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_authentication_strength_policies '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_authentication_strength_policies '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_list_combination_configurations

Get combinationConfigurations from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations.

Read read
Parameters
authentication_strength_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_list_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_authentication_strength_policies_list_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_create_combination_configurations

Create new navigation property to combinationConfigurations for policies\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations.

Write write
Parameters
authentication_strength_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_create_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_authentication_strength_policies_create_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_combination_configurations_get_count_7b5f

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/$count.

Read read
Parameters
authentication_strength_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_combination_configurations_get_count_7b5f '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_authentication_strength_policies_combination_configurations_get_count_7b5f '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_delete_combination_configurations

Delete navigation property combinationConfigurations for policies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}.

Write write
Parameters
authentication_strength_policy_id, authentication_combination_configuration_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_delete_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","authentication_combination_configuration_id":"example_authentication_combination_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_authentication_strength_policies_delete_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","authentication_combination_configuration_id":"example_authentication_combination_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_get_combination_configurations

Get combinationConfigurations from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}.

Read read
Parameters
authentication_strength_policy_id, authentication_combination_configuration_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_get_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","authentication_combination_configuration_id":"example_authentication_combination_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_authentication_strength_policies_get_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","authentication_combination_configuration_id":"example_authentication_combination_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_update_combination_configurations

Update the navigation property combinationConfigurations in policies\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}.

Write write
Parameters
authentication_strength_policy_id, authentication_combination_configuration_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_update_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","authentication_combination_configuration_id":"example_authentication_combination_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_authentication_strength_policies_update_combination_configurations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","authentication_combination_configuration_id":"example_authentication_combination_configuration_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_authentication_strength_policy_update_allowed_combinations

Invoke action updateAllowedCombinations\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/updateAllowedCombinations.

Write write
Parameters
authentication_strength_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_authentication_strength_policy_update_allowed_combinations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_authentication_strength_policies_authentication_strength_policy_update_allowed_combinations '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_authentication_strength_policy_usage

Invoke function usage\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/usage().

Read read
Parameters
authentication_strength_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_authentication_strength_policy_usage '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_authentication_strength_policies_authentication_strength_policy_usage '{"authentication_strength_policy_id":"example_authentication_strength_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_authorization_policy

Delete navigation property authorizationPolicy for policies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/authorizationPolicy.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_authorization_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_authorization_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_authorization_policy

Get authorizationPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/authorizationPolicy.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_authorization_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_authorization_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_authorization_policy

Update authorizationPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/authorizationPolicy.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_authorization_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_authorization_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_list_claims_mapping_policies

List claimsMappingPolicies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/claimsMappingPolicies.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_list_claims_mapping_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_list_claims_mapping_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_create_claims_mapping_policies

Create claimsMappingPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/claimsMappingPolicies.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_create_claims_mapping_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_create_claims_mapping_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_claims_mapping_policies_get_count_0f66

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/claimsMappingPolicies/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_claims_mapping_policies_get_count_0f66 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_claims_mapping_policies_get_count_0f66 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_claims_mapping_policies

Delete claimsMappingPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/claimsMappingPolicies/{claimsMappingPolicy-id}.

Write write
Parameters
claims_mapping_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_claims_mapping_policies '{"claims_mapping_policy_id":"example_claims_mapping_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_claims_mapping_policies '{"claims_mapping_policy_id":"example_claims_mapping_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_claims_mapping_policies

Get claimsMappingPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/claimsMappingPolicies/{claimsMappingPolicy-id}.

Read read
Parameters
claims_mapping_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_claims_mapping_policies '{"claims_mapping_policy_id":"example_claims_mapping_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_claims_mapping_policies '{"claims_mapping_policy_id":"example_claims_mapping_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_claims_mapping_policies

Update claimsmappingpolicy\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/claimsMappingPolicies/{claimsMappingPolicy-id}.

Write write
Parameters
claims_mapping_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_claims_mapping_policies '{"claims_mapping_policy_id":"example_claims_mapping_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_claims_mapping_policies '{"claims_mapping_policy_id":"example_claims_mapping_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_claims_mapping_policies_list_applies_to

List appliesTo\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/claimsMappingPolicies/{claimsMappingPolicy-id}/appliesTo.

Read read
Parameters
claims_mapping_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_claims_mapping_policies_list_applies_to '{"claims_mapping_policy_id":"example_claims_mapping_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_claims_mapping_policies_list_applies_to '{"claims_mapping_policy_id":"example_claims_mapping_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_claims_mapping_policies_applies_to_get_count_46aa

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/claimsMappingPolicies/{claimsMappingPolicy-id}/appliesTo/$count.

Read read
Parameters
claims_mapping_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_claims_mapping_policies_applies_to_get_count_46aa '{"claims_mapping_policy_id":"example_claims_mapping_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_claims_mapping_policies_applies_to_get_count_46aa '{"claims_mapping_policy_id":"example_claims_mapping_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_claims_mapping_policies_get_applies_to

Get appliesTo from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/claimsMappingPolicies/{claimsMappingPolicy-id}/appliesTo/{directoryObject-id}.

Read read
Parameters
claims_mapping_policy_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_claims_mapping_policies_get_applies_to '{"claims_mapping_policy_id":"example_claims_mapping_policy_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_claims_mapping_policies_get_applies_to '{"claims_mapping_policy_id":"example_claims_mapping_policy_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_list_conditional_access_policies

Get conditionalAccessPolicies from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/conditionalAccessPolicies.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_list_conditional_access_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_list_conditional_access_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_create_conditional_access_policies

Create new navigation property to conditionalAccessPolicies for policies\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/conditionalAccessPolicies.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_create_conditional_access_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_create_conditional_access_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_conditional_access_policies_get_count_2c66

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/conditionalAccessPolicies/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_conditional_access_policies_get_count_2c66 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_conditional_access_policies_get_count_2c66 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_conditional_access_policies

Delete navigation property conditionalAccessPolicies for policies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/conditionalAccessPolicies/{conditionalAccessPolicy-id}.

Write write
Parameters
conditional_access_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_conditional_access_policies '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_conditional_access_policies '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_conditional_access_policies

Get conditionalAccessPolicies from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/conditionalAccessPolicies/{conditionalAccessPolicy-id}.

Read read
Parameters
conditional_access_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_conditional_access_policies '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_conditional_access_policies '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_conditional_access_policies

Update the navigation property conditionalAccessPolicies in policies\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/conditionalAccessPolicies/{conditionalAccessPolicy-id}.

Write write
Parameters
conditional_access_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_conditional_access_policies '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_conditional_access_policies '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_conditional_access_policies_conditional_access_policy_restore

Invoke action restore\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/conditionalAccessPolicies/{conditionalAccessPolicy-id}/restore.

Read read
Parameters
conditional_access_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_conditional_access_policies_conditional_access_policy_restore '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_conditional_access_policies_conditional_access_policy_restore '{"conditional_access_policy_id":"example_conditional_access_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_cross_tenant_access_policy

Delete navigation property crossTenantAccessPolicy for policies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/crossTenantAccessPolicy.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_cross_tenant_access_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_cross_tenant_access_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_cross_tenant_access_policy

Get crossTenantAccessPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/crossTenantAccessPolicy.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_cross_tenant_access_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_cross_tenant_access_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_cross_tenant_access_policy

Update crossTenantAccessPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/crossTenantAccessPolicy.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_cross_tenant_access_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_cross_tenant_access_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_delete_default

Delete navigation property default for policies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/crossTenantAccessPolicy/default.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_delete_default '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_delete_default '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_get_default

Get crossTenantAccessPolicyConfigurationDefault\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/crossTenantAccessPolicy/default.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_get_default '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_get_default '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_update_default

Update crossTenantAccessPolicyConfigurationDefault\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/crossTenantAccessPolicy/default.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_update_default '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_update_default '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_default_reset_to_system_default

Invoke action resetToSystemDefault\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/crossTenantAccessPolicy/default/resetToSystemDefault.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_default_reset_to_system_default '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_default_reset_to_system_default '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_list_partners

List partners\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/crossTenantAccessPolicy/partners.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_list_partners '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_list_partners '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_create_partners

Create crossTenantAccessPolicyConfigurationPartner\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/crossTenantAccessPolicy/partners.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_create_partners '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_create_partners '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_partners_get_count_d5d2

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/crossTenantAccessPolicy/partners/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_partners_get_count_d5d2 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_partners_get_count_d5d2 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_delete_partners

Delete crossTenantAccessPolicyConfigurationPartner\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}.

Write write
Parameters
cross_tenant_access_policy_configuration_partner_tenant_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_delete_partners '{"cross_tenant_access_policy_configuration_partner_tenant_id":"example_cross_tenant_access_policy_configuration_partner_tenant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_delete_partners '{"cross_tenant_access_policy_configuration_partner_tenant_id":"example_cross_tenant_access_policy_configuration_partner_tenant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_get_partners

Get crossTenantAccessPolicyConfigurationPartner\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}.

Read read
Parameters
cross_tenant_access_policy_configuration_partner_tenant_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_get_partners '{"cross_tenant_access_policy_configuration_partner_tenant_id":"example_cross_tenant_access_policy_configuration_partner_tenant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_get_partners '{"cross_tenant_access_policy_configuration_partner_tenant_id":"example_cross_tenant_access_policy_configuration_partner_tenant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_update_partners

Update crossTenantAccessPolicyConfigurationPartner\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}.

Write write
Parameters
cross_tenant_access_policy_configuration_partner_tenant_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_update_partners '{"cross_tenant_access_policy_configuration_partner_tenant_id":"example_cross_tenant_access_policy_configuration_partner_tenant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_update_partners '{"cross_tenant_access_policy_configuration_partner_tenant_id":"example_cross_tenant_access_policy_configuration_partner_tenant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_partners_delete_identity_synchronization

Delete crossTenantIdentitySyncPolicyPartner\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}/identitySynchronization.

Write write
Parameters
cross_tenant_access_policy_configuration_partner_tenant_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_partners_delete_identity_synchronization '{"cross_tenant_access_policy_configuration_partner_tenant_id":"example_cross_tenant_access_policy_configuration_partner_tenant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_partners_delete_identity_synchronization '{"cross_tenant_access_policy_configuration_partner_tenant_id":"example_cross_tenant_access_policy_configuration_partner_tenant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_partners_get_identity_synchronization

Get crossTenantIdentitySyncPolicyPartner\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}/identitySynchronization.

Read read
Parameters
cross_tenant_access_policy_configuration_partner_tenant_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_partners_get_identity_synchronization '{"cross_tenant_access_policy_configuration_partner_tenant_id":"example_cross_tenant_access_policy_configuration_partner_tenant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_partners_get_identity_synchronization '{"cross_tenant_access_policy_configuration_partner_tenant_id":"example_cross_tenant_access_policy_configuration_partner_tenant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_partners_set_identity_synchronization

Create identitySynchronization\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}/identitySynchronization.

Read read
Parameters
cross_tenant_access_policy_configuration_partner_tenant_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_partners_set_identity_synchronization '{"cross_tenant_access_policy_configuration_partner_tenant_id":"example_cross_tenant_access_policy_configuration_partner_tenant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_partners_set_identity_synchronization '{"cross_tenant_access_policy_configuration_partner_tenant_id":"example_cross_tenant_access_policy_configuration_partner_tenant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_delete_templates

Delete navigation property templates for policies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/crossTenantAccessPolicy/templates.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_delete_templates '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_delete_templates '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_get_templates

Get templates from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/crossTenantAccessPolicy/templates.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_get_templates '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_get_templates '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_update_templates

Update the navigation property templates in policies\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/crossTenantAccessPolicy/templates.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_update_templates '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_update_templates '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_delete_multi_tenant_organization_identity_synchronization

Delete navigation property multiTenantOrganizationIdentitySynchronization for policies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_delete_multi_tenant_organization_identity_synchronization '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_templates_delete_multi_tenant_organization_identity_synchronization '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_get_multi_tenant_organization_identity_synchronization

Get multiTenantOrganizationIdentitySyncPolicyTemplate\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_get_multi_tenant_organization_identity_synchronization '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_templates_get_multi_tenant_organization_identity_synchronization '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_update_multi_tenant_organization_identity_synchronization

Update multiTenantOrganizationIdentitySyncPolicyTemplate\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_update_multi_tenant_organization_identity_synchronization '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_templates_update_multi_tenant_organization_identity_synchronization '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_delete_multi_tenant_organization_partner_configuration

Delete navigation property multiTenantOrganizationPartnerConfiguration for policies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_delete_multi_tenant_organization_partner_configuration '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_templates_delete_multi_tenant_organization_partner_configuration '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_get_multi_tenant_organization_partner_configuration

Get multiTenantOrganizationPartnerConfigurationTemplate\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_get_multi_tenant_organization_partner_configuration '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_templates_get_multi_tenant_organization_partner_configuration '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_update_multi_tenant_organization_partner_configuration

Update multiTenantOrganizationPartnerConfigurationTemplate\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_update_multi_tenant_organization_partner_configuration '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_cross_tenant_access_policy_templates_update_multi_tenant_organization_partner_configuration '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_default_app_management_policy

Delete navigation property defaultAppManagementPolicy for policies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/defaultAppManagementPolicy.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_default_app_management_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_default_app_management_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_default_app_management_policy

Get tenantAppManagementPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/defaultAppManagementPolicy.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_default_app_management_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_default_app_management_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_default_app_management_policy

Update tenantAppManagementPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/defaultAppManagementPolicy.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_default_app_management_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_default_app_management_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_device_registration_policy

Get deviceRegistrationPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/deviceRegistrationPolicy.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_device_registration_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_device_registration_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_list_feature_rollout_policies

List featureRolloutPolicies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/featureRolloutPolicies.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_list_feature_rollout_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_list_feature_rollout_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_create_feature_rollout_policies

Create featureRolloutPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/featureRolloutPolicies.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_create_feature_rollout_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_create_feature_rollout_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_get_count_bb08

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/featureRolloutPolicies/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_get_count_bb08 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_feature_rollout_policies_get_count_bb08 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_feature_rollout_policies

Delete featureRolloutPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/featureRolloutPolicies/{featureRolloutPolicy-id}.

Write write
Parameters
feature_rollout_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_feature_rollout_policies '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_feature_rollout_policies '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_feature_rollout_policies

Get featureRolloutPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/featureRolloutPolicies/{featureRolloutPolicy-id}.

Read read
Parameters
feature_rollout_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_feature_rollout_policies '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_feature_rollout_policies '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_feature_rollout_policies

Update featurerolloutpolicy\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/featureRolloutPolicies/{featureRolloutPolicy-id}.

Write write
Parameters
feature_rollout_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_feature_rollout_policies '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_feature_rollout_policies '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_list_applies_to

Get appliesTo from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo.

Read read
Parameters
feature_rollout_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_list_applies_to '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_feature_rollout_policies_list_applies_to '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_create_applies_to

Assign appliesTo on a featureRolloutPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo.

Write write
Parameters
feature_rollout_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_create_applies_to '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_feature_rollout_policies_create_applies_to '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_applies_to_get_count_b7fc

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$count.

Read read
Parameters
feature_rollout_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_applies_to_get_count_b7fc '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_feature_rollout_policies_applies_to_get_count_b7fc '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_delete_ref_applies_to

Remove appliesTo on a featureRolloutPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref.

Write write
Parameters
feature_rollout_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_delete_ref_applies_to '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_feature_rollout_policies_delete_ref_applies_to '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_list_ref_applies_to

Get ref of appliesTo from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref.

Read read
Parameters
feature_rollout_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_list_ref_applies_to '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_feature_rollout_policies_list_ref_applies_to '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_create_ref_applies_to

Assign appliesTo on a featureRolloutPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref.

Write write
Parameters
feature_rollout_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_create_ref_applies_to '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_feature_rollout_policies_create_ref_applies_to '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_applies_to_delete_ref_directory_object

Remove appliesTo on a featureRolloutPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}/$ref.

Write write
Parameters
feature_rollout_policy_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_applies_to_delete_ref_directory_object '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_feature_rollout_policies_applies_to_delete_ref_directory_object '{"feature_rollout_policy_id":"example_feature_rollout_policy_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_list_home_realm_discovery_policies

List homeRealmDiscoveryPolicies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/homeRealmDiscoveryPolicies.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_list_home_realm_discovery_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_list_home_realm_discovery_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_create_home_realm_discovery_policies

Create homeRealmDiscoveryPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/homeRealmDiscoveryPolicies.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_create_home_realm_discovery_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_create_home_realm_discovery_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_home_realm_discovery_policies_get_count_9451

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/homeRealmDiscoveryPolicies/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_home_realm_discovery_policies_get_count_9451 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_home_realm_discovery_policies_get_count_9451 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_home_realm_discovery_policies

Delete homeRealmDiscoveryPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}.

Write write
Parameters
home_realm_discovery_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_home_realm_discovery_policies '{"home_realm_discovery_policy_id":"example_home_realm_discovery_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_home_realm_discovery_policies '{"home_realm_discovery_policy_id":"example_home_realm_discovery_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_home_realm_discovery_policies

Get homeRealmDiscoveryPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}.

Read read
Parameters
home_realm_discovery_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_home_realm_discovery_policies '{"home_realm_discovery_policy_id":"example_home_realm_discovery_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_home_realm_discovery_policies '{"home_realm_discovery_policy_id":"example_home_realm_discovery_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_home_realm_discovery_policies

Update homerealmdiscoverypolicy\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}.

Write write
Parameters
home_realm_discovery_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_home_realm_discovery_policies '{"home_realm_discovery_policy_id":"example_home_realm_discovery_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_home_realm_discovery_policies '{"home_realm_discovery_policy_id":"example_home_realm_discovery_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_home_realm_discovery_policies_list_applies_to

List appliesTo\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/appliesTo.

Read read
Parameters
home_realm_discovery_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_home_realm_discovery_policies_list_applies_to '{"home_realm_discovery_policy_id":"example_home_realm_discovery_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_home_realm_discovery_policies_list_applies_to '{"home_realm_discovery_policy_id":"example_home_realm_discovery_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_home_realm_discovery_policies_applies_to_get_count_6090

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/appliesTo/$count.

Read read
Parameters
home_realm_discovery_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_home_realm_discovery_policies_applies_to_get_count_6090 '{"home_realm_discovery_policy_id":"example_home_realm_discovery_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_home_realm_discovery_policies_applies_to_get_count_6090 '{"home_realm_discovery_policy_id":"example_home_realm_discovery_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_home_realm_discovery_policies_get_applies_to

Get appliesTo from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/appliesTo/{directoryObject-id}.

Read read
Parameters
home_realm_discovery_policy_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_home_realm_discovery_policies_get_applies_to '{"home_realm_discovery_policy_id":"example_home_realm_discovery_policy_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_home_realm_discovery_policies_get_applies_to '{"home_realm_discovery_policy_id":"example_home_realm_discovery_policy_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_identity_security_defaults_enforcement_policy

Delete navigation property identitySecurityDefaultsEnforcementPolicy for policies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/identitySecurityDefaultsEnforcementPolicy.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_identity_security_defaults_enforcement_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_identity_security_defaults_enforcement_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_identity_security_defaults_enforcement_policy

Get identitySecurityDefaultsEnforcementPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/identitySecurityDefaultsEnforcementPolicy.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_identity_security_defaults_enforcement_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_identity_security_defaults_enforcement_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_identity_security_defaults_enforcement_policy

Update identitySecurityDefaultsEnforcementPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/identitySecurityDefaultsEnforcementPolicy.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_identity_security_defaults_enforcement_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_identity_security_defaults_enforcement_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_ownerless_group_policy

Get ownerlessGroupPolicy from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/ownerlessGroupPolicy.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_ownerless_group_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_ownerless_group_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_ownerless_group_policy

Update the navigation property ownerlessGroupPolicy in policies\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/ownerlessGroupPolicy.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_ownerless_group_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_ownerless_group_policy '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_list_permission_grant_policies

List permissionGrantPolicies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/permissionGrantPolicies.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_list_permission_grant_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_list_permission_grant_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_create_permission_grant_policies

Create permissionGrantPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/permissionGrantPolicies.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_create_permission_grant_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_create_permission_grant_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_get_count_86b8

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/permissionGrantPolicies/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_get_count_86b8 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_permission_grant_policies_get_count_86b8 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_permission_grant_policies

Delete permissionGrantPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/permissionGrantPolicies/{permissionGrantPolicy-id}.

Write write
Parameters
permission_grant_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_permission_grant_policies '{"permission_grant_policy_id":"example_permission_grant_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_permission_grant_policies '{"permission_grant_policy_id":"example_permission_grant_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_permission_grant_policies

Get permissionGrantPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/permissionGrantPolicies/{permissionGrantPolicy-id}.

Read read
Parameters
permission_grant_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_permission_grant_policies '{"permission_grant_policy_id":"example_permission_grant_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_permission_grant_policies '{"permission_grant_policy_id":"example_permission_grant_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_permission_grant_policies

Update permissionGrantPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/permissionGrantPolicies/{permissionGrantPolicy-id}.

Write write
Parameters
permission_grant_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_permission_grant_policies '{"permission_grant_policy_id":"example_permission_grant_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_permission_grant_policies '{"permission_grant_policy_id":"example_permission_grant_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_list_excludes

List excludes collection of permissionGrantPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes.

Read read
Parameters
permission_grant_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_list_excludes '{"permission_grant_policy_id":"example_permission_grant_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_permission_grant_policies_list_excludes '{"permission_grant_policy_id":"example_permission_grant_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_create_excludes

Create permissionGrantConditionSet in excludes collection of permissionGrantPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes.

Write write
Parameters
permission_grant_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_create_excludes '{"permission_grant_policy_id":"example_permission_grant_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_permission_grant_policies_create_excludes '{"permission_grant_policy_id":"example_permission_grant_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_excludes_get_count_7507

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/$count.

Read read
Parameters
permission_grant_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_excludes_get_count_7507 '{"permission_grant_policy_id":"example_permission_grant_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_permission_grant_policies_excludes_get_count_7507 '{"permission_grant_policy_id":"example_permission_grant_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_delete_excludes

Delete permissionGrantConditionSet from excludes collection of permissionGrantPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}.

Write write
Parameters
permission_grant_policy_id, permission_grant_condition_set_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_delete_excludes '{"permission_grant_policy_id":"example_permission_grant_policy_id","permission_grant_condition_set_id":"example_permission_grant_condition_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_permission_grant_policies_delete_excludes '{"permission_grant_policy_id":"example_permission_grant_policy_id","permission_grant_condition_set_id":"example_permission_grant_condition_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_get_excludes

Get excludes from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}.

Read read
Parameters
permission_grant_policy_id, permission_grant_condition_set_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_get_excludes '{"permission_grant_policy_id":"example_permission_grant_policy_id","permission_grant_condition_set_id":"example_permission_grant_condition_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_permission_grant_policies_get_excludes '{"permission_grant_policy_id":"example_permission_grant_policy_id","permission_grant_condition_set_id":"example_permission_grant_condition_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_update_excludes

Update the navigation property excludes in policies\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}.

Write write
Parameters
permission_grant_policy_id, permission_grant_condition_set_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_update_excludes '{"permission_grant_policy_id":"example_permission_grant_policy_id","permission_grant_condition_set_id":"example_permission_grant_condition_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_permission_grant_policies_update_excludes '{"permission_grant_policy_id":"example_permission_grant_policy_id","permission_grant_condition_set_id":"example_permission_grant_condition_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_list_includes

List includes collection of permissionGrantPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes.

Read read
Parameters
permission_grant_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_list_includes '{"permission_grant_policy_id":"example_permission_grant_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_permission_grant_policies_list_includes '{"permission_grant_policy_id":"example_permission_grant_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_create_includes

Create permissionGrantConditionSet in includes collection of permissionGrantPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes.

Write write
Parameters
permission_grant_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_create_includes '{"permission_grant_policy_id":"example_permission_grant_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_permission_grant_policies_create_includes '{"permission_grant_policy_id":"example_permission_grant_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_includes_get_count_4a76

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/$count.

Read read
Parameters
permission_grant_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_includes_get_count_4a76 '{"permission_grant_policy_id":"example_permission_grant_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_permission_grant_policies_includes_get_count_4a76 '{"permission_grant_policy_id":"example_permission_grant_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_delete_includes

Delete permissionGrantConditionSet from includes collection of permissionGrantPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}.

Write write
Parameters
permission_grant_policy_id, permission_grant_condition_set_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_delete_includes '{"permission_grant_policy_id":"example_permission_grant_policy_id","permission_grant_condition_set_id":"example_permission_grant_condition_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_permission_grant_policies_delete_includes '{"permission_grant_policy_id":"example_permission_grant_policy_id","permission_grant_condition_set_id":"example_permission_grant_condition_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_get_includes

Get includes from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}.

Read read
Parameters
permission_grant_policy_id, permission_grant_condition_set_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_get_includes '{"permission_grant_policy_id":"example_permission_grant_policy_id","permission_grant_condition_set_id":"example_permission_grant_condition_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_permission_grant_policies_get_includes '{"permission_grant_policy_id":"example_permission_grant_policy_id","permission_grant_condition_set_id":"example_permission_grant_condition_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_update_includes

Update the navigation property includes in policies\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}.

Write write
Parameters
permission_grant_policy_id, permission_grant_condition_set_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_update_includes '{"permission_grant_policy_id":"example_permission_grant_policy_id","permission_grant_condition_set_id":"example_permission_grant_condition_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_permission_grant_policies_update_includes '{"permission_grant_policy_id":"example_permission_grant_policy_id","permission_grant_condition_set_id":"example_permission_grant_condition_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_list_role_management_policies

List roleManagementPolicies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/roleManagementPolicies.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_list_role_management_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_list_role_management_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_create_role_management_policies

Create new navigation property to roleManagementPolicies for policies\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/roleManagementPolicies.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_create_role_management_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_create_role_management_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_get_count_cdca

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/roleManagementPolicies/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_get_count_cdca '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_role_management_policies_get_count_cdca '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_role_management_policies

Delete navigation property roleManagementPolicies for policies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}.

Write write
Parameters
unified_role_management_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_role_management_policies '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_role_management_policies '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_role_management_policies

Get unifiedRoleManagementPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}.

Read read
Parameters
unified_role_management_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_role_management_policies '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_role_management_policies '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_role_management_policies

Update the navigation property roleManagementPolicies in policies\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}.

Write write
Parameters
unified_role_management_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_role_management_policies '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_role_management_policies '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_list_effective_rules

Get effectiveRules from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules.

Read read
Parameters
unified_role_management_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_list_effective_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_role_management_policies_list_effective_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_create_effective_rules

Create new navigation property to effectiveRules for policies\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules.

Write write
Parameters
unified_role_management_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_create_effective_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_role_management_policies_create_effective_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_effective_rules_get_count_5858

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/$count.

Read read
Parameters
unified_role_management_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_effective_rules_get_count_5858 '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_role_management_policies_effective_rules_get_count_5858 '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_delete_effective_rules

Delete navigation property effectiveRules for policies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}.

Write write
Parameters
unified_role_management_policy_id, unified_role_management_policy_rule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_delete_effective_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","unified_role_management_policy_rule_id":"example_unified_role_management_policy_rule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_role_management_policies_delete_effective_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","unified_role_management_policy_rule_id":"example_unified_role_management_policy_rule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_get_effective_rules

Get effectiveRules from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}.

Read read
Parameters
unified_role_management_policy_id, unified_role_management_policy_rule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_get_effective_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","unified_role_management_policy_rule_id":"example_unified_role_management_policy_rule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_role_management_policies_get_effective_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","unified_role_management_policy_rule_id":"example_unified_role_management_policy_rule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_update_effective_rules

Update the navigation property effectiveRules in policies\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}.

Write write
Parameters
unified_role_management_policy_id, unified_role_management_policy_rule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_update_effective_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","unified_role_management_policy_rule_id":"example_unified_role_management_policy_rule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_role_management_policies_update_effective_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","unified_role_management_policy_rule_id":"example_unified_role_management_policy_rule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_list_rules

List rules (for a role management policy)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules.

Read read
Parameters
unified_role_management_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_list_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_role_management_policies_list_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_create_rules

Create new navigation property to rules for policies\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules.

Write write
Parameters
unified_role_management_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_create_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_role_management_policies_create_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_rules_get_count_6c00

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/$count.

Read read
Parameters
unified_role_management_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_rules_get_count_6c00 '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_role_management_policies_rules_get_count_6c00 '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_delete_rules

Delete navigation property rules for policies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}.

Write write
Parameters
unified_role_management_policy_id, unified_role_management_policy_rule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_delete_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","unified_role_management_policy_rule_id":"example_unified_role_management_policy_rule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_role_management_policies_delete_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","unified_role_management_policy_rule_id":"example_unified_role_management_policy_rule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_get_rules

Get unifiedRoleManagementPolicyRule\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}.

Read read
Parameters
unified_role_management_policy_id, unified_role_management_policy_rule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_get_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","unified_role_management_policy_rule_id":"example_unified_role_management_policy_rule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_role_management_policies_get_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","unified_role_management_policy_rule_id":"example_unified_role_management_policy_rule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_update_rules

Update unifiedRoleManagementPolicyRule\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}.

Write write
Parameters
unified_role_management_policy_id, unified_role_management_policy_rule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_update_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","unified_role_management_policy_rule_id":"example_unified_role_management_policy_rule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_role_management_policies_update_rules '{"unified_role_management_policy_id":"example_unified_role_management_policy_id","unified_role_management_policy_rule_id":"example_unified_role_management_policy_rule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_list_role_management_policy_assignments

List roleManagementPolicyAssignments\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/roleManagementPolicyAssignments.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_list_role_management_policy_assignments '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_list_role_management_policy_assignments '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_create_role_management_policy_assignments

Create new navigation property to roleManagementPolicyAssignments for policies\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/roleManagementPolicyAssignments.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_create_role_management_policy_assignments '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_create_role_management_policy_assignments '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_role_management_policy_assignments_get_count_8d94

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/roleManagementPolicyAssignments/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_role_management_policy_assignments_get_count_8d94 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_role_management_policy_assignments_get_count_8d94 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_role_management_policy_assignments

Delete navigation property roleManagementPolicyAssignments for policies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}.

Write write
Parameters
unified_role_management_policy_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_role_management_policy_assignments '{"unified_role_management_policy_assignment_id":"example_unified_role_management_policy_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_role_management_policy_assignments '{"unified_role_management_policy_assignment_id":"example_unified_role_management_policy_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_role_management_policy_assignments

Get unifiedRoleManagementPolicyAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}.

Read read
Parameters
unified_role_management_policy_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_role_management_policy_assignments '{"unified_role_management_policy_assignment_id":"example_unified_role_management_policy_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_role_management_policy_assignments '{"unified_role_management_policy_assignment_id":"example_unified_role_management_policy_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_role_management_policy_assignments

Update the navigation property roleManagementPolicyAssignments in policies\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}.

Write write
Parameters
unified_role_management_policy_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_role_management_policy_assignments '{"unified_role_management_policy_assignment_id":"example_unified_role_management_policy_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_role_management_policy_assignments '{"unified_role_management_policy_assignment_id":"example_unified_role_management_policy_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_role_management_policy_assignments_get_policy

Get policy from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}/policy.

Read read
Parameters
unified_role_management_policy_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_role_management_policy_assignments_get_policy '{"unified_role_management_policy_assignment_id":"example_unified_role_management_policy_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_role_management_policy_assignments_get_policy '{"unified_role_management_policy_assignment_id":"example_unified_role_management_policy_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_list_token_issuance_policies

List tokenIssuancePolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/tokenIssuancePolicies.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_list_token_issuance_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_list_token_issuance_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_create_token_issuance_policies

Create tokenIssuancePolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/tokenIssuancePolicies.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_create_token_issuance_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_create_token_issuance_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_token_issuance_policies_get_count_224d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/tokenIssuancePolicies/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_token_issuance_policies_get_count_224d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_token_issuance_policies_get_count_224d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_token_issuance_policies

Delete tokenIssuancePolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}.

Write write
Parameters
token_issuance_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_token_issuance_policies '{"token_issuance_policy_id":"example_token_issuance_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_token_issuance_policies '{"token_issuance_policy_id":"example_token_issuance_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_token_issuance_policies

Get tokenIssuancePolicies from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}.

Read read
Parameters
token_issuance_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_token_issuance_policies '{"token_issuance_policy_id":"example_token_issuance_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_token_issuance_policies '{"token_issuance_policy_id":"example_token_issuance_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_token_issuance_policies

Update tokenIssuancePolicy\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}.

Write write
Parameters
token_issuance_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_token_issuance_policies '{"token_issuance_policy_id":"example_token_issuance_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_token_issuance_policies '{"token_issuance_policy_id":"example_token_issuance_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_token_issuance_policies_list_applies_to

List appliesTo\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}/appliesTo.

Read read
Parameters
token_issuance_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_token_issuance_policies_list_applies_to '{"token_issuance_policy_id":"example_token_issuance_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_token_issuance_policies_list_applies_to '{"token_issuance_policy_id":"example_token_issuance_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_token_issuance_policies_applies_to_get_count_e7f9

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}/appliesTo/$count.

Read read
Parameters
token_issuance_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_token_issuance_policies_applies_to_get_count_e7f9 '{"token_issuance_policy_id":"example_token_issuance_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_token_issuance_policies_applies_to_get_count_e7f9 '{"token_issuance_policy_id":"example_token_issuance_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_token_issuance_policies_get_applies_to

Get appliesTo from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}/appliesTo/{directoryObject-id}.

Read read
Parameters
token_issuance_policy_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_token_issuance_policies_get_applies_to '{"token_issuance_policy_id":"example_token_issuance_policy_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_token_issuance_policies_get_applies_to '{"token_issuance_policy_id":"example_token_issuance_policy_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_policies_list_token_lifetime_policies

List tokenLifetimePolicies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/tokenLifetimePolicies.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_list_token_lifetime_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_list_token_lifetime_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_create_token_lifetime_policies

Create tokenLifetimePolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /policies/tokenLifetimePolicies.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_create_token_lifetime_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_create_token_lifetime_policies '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_token_lifetime_policies_get_count_12df

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/tokenLifetimePolicies/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_token_lifetime_policies_get_count_12df '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_token_lifetime_policies_get_count_12df '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_policies_delete_token_lifetime_policies

Delete tokenLifetimePolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}.

Write write
Parameters
token_lifetime_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_delete_token_lifetime_policies '{"token_lifetime_policy_id":"example_token_lifetime_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_delete_token_lifetime_policies '{"token_lifetime_policy_id":"example_token_lifetime_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_get_token_lifetime_policies

Get tokenLifetimePolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}.

Read read
Parameters
token_lifetime_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_get_token_lifetime_policies '{"token_lifetime_policy_id":"example_token_lifetime_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_get_token_lifetime_policies '{"token_lifetime_policy_id":"example_token_lifetime_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_update_token_lifetime_policies

Update tokenlifetimepolicy\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}.

Write write
Parameters
token_lifetime_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_update_token_lifetime_policies '{"token_lifetime_policy_id":"example_token_lifetime_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_update_token_lifetime_policies '{"token_lifetime_policy_id":"example_token_lifetime_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_token_lifetime_policies_list_applies_to

List appliesTo\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}/appliesTo.

Read read
Parameters
token_lifetime_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_token_lifetime_policies_list_applies_to '{"token_lifetime_policy_id":"example_token_lifetime_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_token_lifetime_policies_list_applies_to '{"token_lifetime_policy_id":"example_token_lifetime_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_token_lifetime_policies_applies_to_get_count_3209

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}/appliesTo/$count.

Read read
Parameters
token_lifetime_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_token_lifetime_policies_applies_to_get_count_3209 '{"token_lifetime_policy_id":"example_token_lifetime_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_token_lifetime_policies_applies_to_get_count_3209 '{"token_lifetime_policy_id":"example_token_lifetime_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_policies_token_lifetime_policies_get_applies_to

Get appliesTo from policies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}/appliesTo/{directoryObject-id}.

Read read
Parameters
token_lifetime_policy_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_policies_token_lifetime_policies_get_applies_to '{"token_lifetime_policy_id":"example_token_lifetime_policy_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_policies_token_lifetime_policies_get_applies_to '{"token_lifetime_policy_id":"example_token_lifetime_policy_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_delete_directory

Delete navigation property directory for roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /roleManagement/directory.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_delete_directory '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_delete_directory '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_get_directory

Get directory from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_get_directory '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_get_directory '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_update_directory

Update the navigation property directory in roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /roleManagement/directory.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_update_directory '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_update_directory '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_list_resource_namespaces

Get resourceNamespaces from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/resourceNamespaces.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_list_resource_namespaces '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_list_resource_namespaces '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_create_resource_namespaces

Create new navigation property to resourceNamespaces for roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: POST /roleManagement/directory/resourceNamespaces.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_create_resource_namespaces '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_create_resource_namespaces '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_get_count_2247

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/resourceNamespaces/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_get_count_2247 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_resource_namespaces_get_count_2247 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_resource_namespaces

Delete navigation property resourceNamespaces for roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}.

Write write
Parameters
unified_rbac_resource_namespace_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_resource_namespaces '{"unified_rbac_resource_namespace_id":"example_unified_rbac_resource_namespace_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_delete_resource_namespaces '{"unified_rbac_resource_namespace_id":"example_unified_rbac_resource_namespace_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_get_resource_namespaces

Get resourceNamespaces from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}.

Read read
Parameters
unified_rbac_resource_namespace_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_get_resource_namespaces '{"unified_rbac_resource_namespace_id":"example_unified_rbac_resource_namespace_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_get_resource_namespaces '{"unified_rbac_resource_namespace_id":"example_unified_rbac_resource_namespace_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_update_resource_namespaces

Update the navigation property resourceNamespaces in roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}.

Write write
Parameters
unified_rbac_resource_namespace_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_update_resource_namespaces '{"unified_rbac_resource_namespace_id":"example_unified_rbac_resource_namespace_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_update_resource_namespaces '{"unified_rbac_resource_namespace_id":"example_unified_rbac_resource_namespace_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_list_resource_actions

Get resourceActions from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions.

Read read
Parameters
unified_rbac_resource_namespace_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_list_resource_actions '{"unified_rbac_resource_namespace_id":"example_unified_rbac_resource_namespace_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_resource_namespaces_list_resource_actions '{"unified_rbac_resource_namespace_id":"example_unified_rbac_resource_namespace_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_create_resource_actions

Create new navigation property to resourceActions for roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: POST /roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions.

Write write
Parameters
unified_rbac_resource_namespace_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_create_resource_actions '{"unified_rbac_resource_namespace_id":"example_unified_rbac_resource_namespace_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_resource_namespaces_create_resource_actions '{"unified_rbac_resource_namespace_id":"example_unified_rbac_resource_namespace_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_resource_actions_get_count_1b0d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count.

Read read
Parameters
unified_rbac_resource_namespace_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_resource_actions_get_count_1b0d '{"unified_rbac_resource_namespace_id":"example_unified_rbac_resource_namespace_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_resource_namespaces_resource_actions_get_count_1b0d '{"unified_rbac_resource_namespace_id":"example_unified_rbac_resource_namespace_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_delete_resource_actions

Delete navigation property resourceActions for roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}.

Write write
Parameters
unified_rbac_resource_namespace_id, unified_rbac_resource_action_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_delete_resource_actions '{"unified_rbac_resource_namespace_id":"example_unified_rbac_resource_namespace_id","unified_rbac_resource_action_id":"example_unified_rbac_resource_action_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_resource_namespaces_delete_resource_actions '{"unified_rbac_resource_namespace_id":"example_unified_rbac_resource_namespace_id","unified_rbac_resource_action_id":"example_unified_rbac_resource_action_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_get_resource_actions

Get resourceActions from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}.

Read read
Parameters
unified_rbac_resource_namespace_id, unified_rbac_resource_action_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_get_resource_actions '{"unified_rbac_resource_namespace_id":"example_unified_rbac_resource_namespace_id","unified_rbac_resource_action_id":"example_unified_rbac_resource_action_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_resource_namespaces_get_resource_actions '{"unified_rbac_resource_namespace_id":"example_unified_rbac_resource_namespace_id","unified_rbac_resource_action_id":"example_unified_rbac_resource_action_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_update_resource_actions

Update the navigation property resourceActions in roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}.

Write write
Parameters
unified_rbac_resource_namespace_id, unified_rbac_resource_action_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_update_resource_actions '{"unified_rbac_resource_namespace_id":"example_unified_rbac_resource_namespace_id","unified_rbac_resource_action_id":"example_unified_rbac_resource_action_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_resource_namespaces_update_resource_actions '{"unified_rbac_resource_namespace_id":"example_unified_rbac_resource_namespace_id","unified_rbac_resource_action_id":"example_unified_rbac_resource_action_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_assignment_schedule_instances

List roleAssignmentScheduleInstances\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleInstances.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_assignment_schedule_instances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_list_role_assignment_schedule_instances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_assignment_schedule_instances

Create new navigation property to roleAssignmentScheduleInstances for roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: POST /roleManagement/directory/roleAssignmentScheduleInstances.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_assignment_schedule_instances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_create_role_assignment_schedule_instances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_count_e055

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleInstances/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_count_e055 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_count_e055 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleInstances/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_assignment_schedule_instances

Delete navigation property roleAssignmentScheduleInstances for roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}.

Write write
Parameters
unified_role_assignment_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_assignment_schedule_instances '{"unified_role_assignment_schedule_instance_id":"example_unified_role_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_delete_role_assignment_schedule_instances '{"unified_role_assignment_schedule_instance_id":"example_unified_role_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_assignment_schedule_instances

Get unifiedRoleAssignmentScheduleInstance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}.

Read read
Parameters
unified_role_assignment_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_assignment_schedule_instances '{"unified_role_assignment_schedule_instance_id":"example_unified_role_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_get_role_assignment_schedule_instances '{"unified_role_assignment_schedule_instance_id":"example_unified_role_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_assignment_schedule_instances

Update the navigation property roleAssignmentScheduleInstances in roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}.

Write write
Parameters
unified_role_assignment_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_assignment_schedule_instances '{"unified_role_assignment_schedule_instance_id":"example_unified_role_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_update_role_assignment_schedule_instances '{"unified_role_assignment_schedule_instance_id":"example_unified_role_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_activated_using

Get activatedUsing from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing.

Read read
Parameters
unified_role_assignment_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_activated_using '{"unified_role_assignment_schedule_instance_id":"example_unified_role_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_activated_using '{"unified_role_assignment_schedule_instance_id":"example_unified_role_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_app_scope

Get appScope from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/appScope.

Read read
Parameters
unified_role_assignment_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_app_scope '{"unified_role_assignment_schedule_instance_id":"example_unified_role_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_app_scope '{"unified_role_assignment_schedule_instance_id":"example_unified_role_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_directory_scope

Get directoryScope from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/directoryScope.

Read read
Parameters
unified_role_assignment_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_directory_scope '{"unified_role_assignment_schedule_instance_id":"example_unified_role_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_directory_scope '{"unified_role_assignment_schedule_instance_id":"example_unified_role_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_principal

Get principal from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/principal.

Read read
Parameters
unified_role_assignment_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_principal '{"unified_role_assignment_schedule_instance_id":"example_unified_role_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_principal '{"unified_role_assignment_schedule_instance_id":"example_unified_role_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_role_definition

Get roleDefinition from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/roleDefinition.

Read read
Parameters
unified_role_assignment_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_role_definition '{"unified_role_assignment_schedule_instance_id":"example_unified_role_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_role_definition '{"unified_role_assignment_schedule_instance_id":"example_unified_role_assignment_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_assignment_schedule_requests

List roleAssignmentScheduleRequests\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleRequests.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_assignment_schedule_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_list_role_assignment_schedule_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_assignment_schedule_requests

Create roleAssignmentScheduleRequests\n\nOfficial Microsoft Graph v1.0 endpoint: POST /roleManagement/directory/roleAssignmentScheduleRequests.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_assignment_schedule_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_create_role_assignment_schedule_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_count_6fe6

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleRequests/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_count_6fe6 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_count_6fe6 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleRequests/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_assignment_schedule_requests

Delete navigation property roleAssignmentScheduleRequests for roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}.

Write write
Parameters
unified_role_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_assignment_schedule_requests '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_delete_role_assignment_schedule_requests '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_assignment_schedule_requests

Get unifiedRoleAssignmentScheduleRequest\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}.

Read read
Parameters
unified_role_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_assignment_schedule_requests '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_get_role_assignment_schedule_requests '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_assignment_schedule_requests

Update the navigation property roleAssignmentScheduleRequests in roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}.

Write write
Parameters
unified_role_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_assignment_schedule_requests '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_update_role_assignment_schedule_requests '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_activated_using

Get activatedUsing from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing.

Read read
Parameters
unified_role_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_activated_using '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_activated_using '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_app_scope

Get appScope from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope.

Read read
Parameters
unified_role_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_app_scope '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_app_scope '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_unified_role_assignment_schedule_request_cancel

Invoke action cancel\n\nOfficial Microsoft Graph v1.0 endpoint: POST /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/cancel.

Read read
Parameters
unified_role_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_unified_role_assignment_schedule_request_cancel '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_unified_role_assignment_schedule_request_cancel '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_directory_scope

Get directoryScope from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope.

Read read
Parameters
unified_role_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_directory_scope '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_directory_scope '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_principal

Get principal from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal.

Read read
Parameters
unified_role_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_principal '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_principal '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_role_definition

Get roleDefinition from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition.

Read read
Parameters
unified_role_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_role_definition '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_role_definition '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_target_schedule

Get targetSchedule from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule.

Read read
Parameters
unified_role_assignment_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_target_schedule '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_target_schedule '{"unified_role_assignment_schedule_request_id":"example_unified_role_assignment_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_assignment_schedules

List roleAssignmentSchedules\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentSchedules.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_assignment_schedules '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_list_role_assignment_schedules '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_assignment_schedules

Create new navigation property to roleAssignmentSchedules for roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: POST /roleManagement/directory/roleAssignmentSchedules.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_assignment_schedules '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_create_role_assignment_schedules '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_count_6f04

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentSchedules/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_count_6f04 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedules_get_count_6f04 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentSchedules/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedules_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_assignment_schedules

Delete navigation property roleAssignmentSchedules for roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}.

Write write
Parameters
unified_role_assignment_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_assignment_schedules '{"unified_role_assignment_schedule_id":"example_unified_role_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_delete_role_assignment_schedules '{"unified_role_assignment_schedule_id":"example_unified_role_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_assignment_schedules

Get unifiedRoleAssignmentSchedule\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}.

Read read
Parameters
unified_role_assignment_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_assignment_schedules '{"unified_role_assignment_schedule_id":"example_unified_role_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_get_role_assignment_schedules '{"unified_role_assignment_schedule_id":"example_unified_role_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_assignment_schedules

Update the navigation property roleAssignmentSchedules in roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}.

Write write
Parameters
unified_role_assignment_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_assignment_schedules '{"unified_role_assignment_schedule_id":"example_unified_role_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_update_role_assignment_schedules '{"unified_role_assignment_schedule_id":"example_unified_role_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_activated_using

Get activatedUsing from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing.

Read read
Parameters
unified_role_assignment_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_activated_using '{"unified_role_assignment_schedule_id":"example_unified_role_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedules_get_activated_using '{"unified_role_assignment_schedule_id":"example_unified_role_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_app_scope

Get appScope from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/appScope.

Read read
Parameters
unified_role_assignment_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_app_scope '{"unified_role_assignment_schedule_id":"example_unified_role_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedules_get_app_scope '{"unified_role_assignment_schedule_id":"example_unified_role_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_directory_scope

Get directoryScope from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/directoryScope.

Read read
Parameters
unified_role_assignment_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_directory_scope '{"unified_role_assignment_schedule_id":"example_unified_role_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedules_get_directory_scope '{"unified_role_assignment_schedule_id":"example_unified_role_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_principal

Get principal from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/principal.

Read read
Parameters
unified_role_assignment_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_principal '{"unified_role_assignment_schedule_id":"example_unified_role_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedules_get_principal '{"unified_role_assignment_schedule_id":"example_unified_role_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_role_definition

Get roleDefinition from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/roleDefinition.

Read read
Parameters
unified_role_assignment_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_role_definition '{"unified_role_assignment_schedule_id":"example_unified_role_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignment_schedules_get_role_definition '{"unified_role_assignment_schedule_id":"example_unified_role_assignment_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_assignments

List unifiedRoleAssignments\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignments.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_assignments '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_list_role_assignments '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_assignments

Create unifiedRoleAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: POST /roleManagement/directory/roleAssignments.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_assignments '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_create_role_assignments '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_count_bd5b

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignments/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_count_bd5b '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignments_get_count_bd5b '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_assignments

Delete unifiedRoleAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}.

Write write
Parameters
unified_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_assignments '{"unified_role_assignment_id":"example_unified_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_delete_role_assignments '{"unified_role_assignment_id":"example_unified_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_assignments

Get unifiedRoleAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}.

Read read
Parameters
unified_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_assignments '{"unified_role_assignment_id":"example_unified_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_get_role_assignments '{"unified_role_assignment_id":"example_unified_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_assignments

Update the navigation property roleAssignments in roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}.

Write write
Parameters
unified_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_assignments '{"unified_role_assignment_id":"example_unified_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_update_role_assignments '{"unified_role_assignment_id":"example_unified_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_delete_app_scope

Delete navigation property appScope for roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope.

Write write
Parameters
unified_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_delete_app_scope '{"unified_role_assignment_id":"example_unified_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignments_delete_app_scope '{"unified_role_assignment_id":"example_unified_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_app_scope

Get appScope from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope.

Read read
Parameters
unified_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_app_scope '{"unified_role_assignment_id":"example_unified_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignments_get_app_scope '{"unified_role_assignment_id":"example_unified_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_update_app_scope

Update the navigation property appScope in roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope.

Write write
Parameters
unified_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_update_app_scope '{"unified_role_assignment_id":"example_unified_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignments_update_app_scope '{"unified_role_assignment_id":"example_unified_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_directory_scope

Get directoryScope from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope.

Read read
Parameters
unified_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_directory_scope '{"unified_role_assignment_id":"example_unified_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignments_get_directory_scope '{"unified_role_assignment_id":"example_unified_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_principal

Get principal from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal.

Read read
Parameters
unified_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_principal '{"unified_role_assignment_id":"example_unified_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignments_get_principal '{"unified_role_assignment_id":"example_unified_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_role_definition

Get roleDefinition from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition.

Read read
Parameters
unified_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_role_definition '{"unified_role_assignment_id":"example_unified_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_assignments_get_role_definition '{"unified_role_assignment_id":"example_unified_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_definitions

List roleDefinitions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleDefinitions.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_definitions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_list_role_definitions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_definitions

Create roleDefinitions\n\nOfficial Microsoft Graph v1.0 endpoint: POST /roleManagement/directory/roleDefinitions.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_definitions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_create_role_definitions '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_get_count_0578

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleDefinitions/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_get_count_0578 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_definitions_get_count_0578 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_definitions

Delete unifiedRoleDefinition\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}.

Write write
Parameters
unified_role_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_definitions '{"unified_role_definition_id":"example_unified_role_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_delete_role_definitions '{"unified_role_definition_id":"example_unified_role_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_definitions

Get unifiedRoleDefinition\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}.

Read read
Parameters
unified_role_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_definitions '{"unified_role_definition_id":"example_unified_role_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_get_role_definitions '{"unified_role_definition_id":"example_unified_role_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_definitions

Update unifiedRoleDefinition\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}.

Write write
Parameters
unified_role_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_definitions '{"unified_role_definition_id":"example_unified_role_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_update_role_definitions '{"unified_role_definition_id":"example_unified_role_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_list_inherits_permissions_from

Get inheritsPermissionsFrom from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom.

Read read
Parameters
unified_role_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_list_inherits_permissions_from '{"unified_role_definition_id":"example_unified_role_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_definitions_list_inherits_permissions_from '{"unified_role_definition_id":"example_unified_role_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_create_inherits_permissions_from

Create new navigation property to inheritsPermissionsFrom for roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: POST /roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom.

Write write
Parameters
unified_role_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_create_inherits_permissions_from '{"unified_role_definition_id":"example_unified_role_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_definitions_create_inherits_permissions_from '{"unified_role_definition_id":"example_unified_role_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_inherits_permissions_from_get_count_f7ad

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/$count.

Read read
Parameters
unified_role_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_inherits_permissions_from_get_count_f7ad '{"unified_role_definition_id":"example_unified_role_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_definitions_inherits_permissions_from_get_count_f7ad '{"unified_role_definition_id":"example_unified_role_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_delete_inherits_permissions_from

Delete navigation property inheritsPermissionsFrom for roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}.

Write write
Parameters
unified_role_definition_id, unified_role_definition_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_delete_inherits_permissions_from '{"unified_role_definition_id":"example_unified_role_definition_id","unified_role_definition_id1":"example_unified_role_definition_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_definitions_delete_inherits_permissions_from '{"unified_role_definition_id":"example_unified_role_definition_id","unified_role_definition_id1":"example_unified_role_definition_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_get_inherits_permissions_from

Get inheritsPermissionsFrom from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}.

Read read
Parameters
unified_role_definition_id, unified_role_definition_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_get_inherits_permissions_from '{"unified_role_definition_id":"example_unified_role_definition_id","unified_role_definition_id1":"example_unified_role_definition_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_definitions_get_inherits_permissions_from '{"unified_role_definition_id":"example_unified_role_definition_id","unified_role_definition_id1":"example_unified_role_definition_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_update_inherits_permissions_from

Update the navigation property inheritsPermissionsFrom in roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}.

Write write
Parameters
unified_role_definition_id, unified_role_definition_id1, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_update_inherits_permissions_from '{"unified_role_definition_id":"example_unified_role_definition_id","unified_role_definition_id1":"example_unified_role_definition_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_definitions_update_inherits_permissions_from '{"unified_role_definition_id":"example_unified_role_definition_id","unified_role_definition_id1":"example_unified_role_definition_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_eligibility_schedule_instances

List roleEligibilityScheduleInstances\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilityScheduleInstances.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_eligibility_schedule_instances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_list_role_eligibility_schedule_instances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_eligibility_schedule_instances

Create new navigation property to roleEligibilityScheduleInstances for roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: POST /roleManagement/directory/roleEligibilityScheduleInstances.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_eligibility_schedule_instances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_create_role_eligibility_schedule_instances '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_count_7642

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilityScheduleInstances/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_count_7642 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_count_7642 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilityScheduleInstances/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_eligibility_schedule_instances

Delete navigation property roleEligibilityScheduleInstances for roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}.

Write write
Parameters
unified_role_eligibility_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_eligibility_schedule_instances '{"unified_role_eligibility_schedule_instance_id":"example_unified_role_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_delete_role_eligibility_schedule_instances '{"unified_role_eligibility_schedule_instance_id":"example_unified_role_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_eligibility_schedule_instances

Get unifiedRoleEligibilityScheduleInstance\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}.

Read read
Parameters
unified_role_eligibility_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_eligibility_schedule_instances '{"unified_role_eligibility_schedule_instance_id":"example_unified_role_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_get_role_eligibility_schedule_instances '{"unified_role_eligibility_schedule_instance_id":"example_unified_role_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_eligibility_schedule_instances

Update the navigation property roleEligibilityScheduleInstances in roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}.

Write write
Parameters
unified_role_eligibility_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_eligibility_schedule_instances '{"unified_role_eligibility_schedule_instance_id":"example_unified_role_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_update_role_eligibility_schedule_instances '{"unified_role_eligibility_schedule_instance_id":"example_unified_role_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_app_scope

Get appScope from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/appScope.

Read read
Parameters
unified_role_eligibility_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_app_scope '{"unified_role_eligibility_schedule_instance_id":"example_unified_role_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_app_scope '{"unified_role_eligibility_schedule_instance_id":"example_unified_role_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_directory_scope

Get directoryScope from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/directoryScope.

Read read
Parameters
unified_role_eligibility_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_directory_scope '{"unified_role_eligibility_schedule_instance_id":"example_unified_role_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_directory_scope '{"unified_role_eligibility_schedule_instance_id":"example_unified_role_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_principal

Get principal from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/principal.

Read read
Parameters
unified_role_eligibility_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_principal '{"unified_role_eligibility_schedule_instance_id":"example_unified_role_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_principal '{"unified_role_eligibility_schedule_instance_id":"example_unified_role_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_role_definition

Get roleDefinition from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/roleDefinition.

Read read
Parameters
unified_role_eligibility_schedule_instance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_role_definition '{"unified_role_eligibility_schedule_instance_id":"example_unified_role_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_role_definition '{"unified_role_eligibility_schedule_instance_id":"example_unified_role_eligibility_schedule_instance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_eligibility_schedule_requests

List roleEligibilityScheduleRequests\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilityScheduleRequests.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_eligibility_schedule_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_list_role_eligibility_schedule_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_eligibility_schedule_requests

Create roleEligibilityScheduleRequest\n\nOfficial Microsoft Graph v1.0 endpoint: POST /roleManagement/directory/roleEligibilityScheduleRequests.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_eligibility_schedule_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_create_role_eligibility_schedule_requests '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_count_68f0

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilityScheduleRequests/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_count_68f0 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_count_68f0 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilityScheduleRequests/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_eligibility_schedule_requests

Delete navigation property roleEligibilityScheduleRequests for roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}.

Write write
Parameters
unified_role_eligibility_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_eligibility_schedule_requests '{"unified_role_eligibility_schedule_request_id":"example_unified_role_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_delete_role_eligibility_schedule_requests '{"unified_role_eligibility_schedule_request_id":"example_unified_role_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_eligibility_schedule_requests

Get unifiedRoleEligibilityScheduleRequest\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}.

Read read
Parameters
unified_role_eligibility_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_eligibility_schedule_requests '{"unified_role_eligibility_schedule_request_id":"example_unified_role_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_get_role_eligibility_schedule_requests '{"unified_role_eligibility_schedule_request_id":"example_unified_role_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_eligibility_schedule_requests

Update the navigation property roleEligibilityScheduleRequests in roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}.

Write write
Parameters
unified_role_eligibility_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_eligibility_schedule_requests '{"unified_role_eligibility_schedule_request_id":"example_unified_role_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_update_role_eligibility_schedule_requests '{"unified_role_eligibility_schedule_request_id":"example_unified_role_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_app_scope

Get appScope from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope.

Read read
Parameters
unified_role_eligibility_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_app_scope '{"unified_role_eligibility_schedule_request_id":"example_unified_role_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_app_scope '{"unified_role_eligibility_schedule_request_id":"example_unified_role_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_unified_role_eligibility_schedule_request_cancel

Invoke action cancel\n\nOfficial Microsoft Graph v1.0 endpoint: POST /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/cancel.

Read read
Parameters
unified_role_eligibility_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_unified_role_eligibility_schedule_request_cancel '{"unified_role_eligibility_schedule_request_id":"example_unified_role_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_unified_role_eligibility_schedule_request_cancel '{"unified_role_eligibility_schedule_request_id":"example_unified_role_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_directory_scope

Get directoryScope from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope.

Read read
Parameters
unified_role_eligibility_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_directory_scope '{"unified_role_eligibility_schedule_request_id":"example_unified_role_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_directory_scope '{"unified_role_eligibility_schedule_request_id":"example_unified_role_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_principal

Get principal from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal.

Read read
Parameters
unified_role_eligibility_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_principal '{"unified_role_eligibility_schedule_request_id":"example_unified_role_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_principal '{"unified_role_eligibility_schedule_request_id":"example_unified_role_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_role_definition

Get roleDefinition from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition.

Read read
Parameters
unified_role_eligibility_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_role_definition '{"unified_role_eligibility_schedule_request_id":"example_unified_role_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_role_definition '{"unified_role_eligibility_schedule_request_id":"example_unified_role_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_target_schedule

Get targetSchedule from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule.

Read read
Parameters
unified_role_eligibility_schedule_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_target_schedule '{"unified_role_eligibility_schedule_request_id":"example_unified_role_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_target_schedule '{"unified_role_eligibility_schedule_request_id":"example_unified_role_eligibility_schedule_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_eligibility_schedules

List roleEligibilitySchedules\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilitySchedules.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_eligibility_schedules '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_list_role_eligibility_schedules '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_eligibility_schedules

Create new navigation property to roleEligibilitySchedules for roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: POST /roleManagement/directory/roleEligibilitySchedules.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_eligibility_schedules '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_create_role_eligibility_schedules '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_count_b25d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilitySchedules/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_count_b25d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_count_b25d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_filter_by_current_user

Invoke function filterByCurrentUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilitySchedules/filterByCurrentUser(on='{on}').

Read read
Parameters
on, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedules_filter_by_current_user '{"on":"example_on","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_eligibility_schedules

Delete navigation property roleEligibilitySchedules for roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}.

Write write
Parameters
unified_role_eligibility_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_eligibility_schedules '{"unified_role_eligibility_schedule_id":"example_unified_role_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_delete_role_eligibility_schedules '{"unified_role_eligibility_schedule_id":"example_unified_role_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_eligibility_schedules

Get unifiedRoleEligibilitySchedule\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}.

Read read
Parameters
unified_role_eligibility_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_eligibility_schedules '{"unified_role_eligibility_schedule_id":"example_unified_role_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_get_role_eligibility_schedules '{"unified_role_eligibility_schedule_id":"example_unified_role_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_eligibility_schedules

Update the navigation property roleEligibilitySchedules in roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}.

Write write
Parameters
unified_role_eligibility_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_eligibility_schedules '{"unified_role_eligibility_schedule_id":"example_unified_role_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_update_role_eligibility_schedules '{"unified_role_eligibility_schedule_id":"example_unified_role_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_app_scope

Get appScope from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/appScope.

Read read
Parameters
unified_role_eligibility_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_app_scope '{"unified_role_eligibility_schedule_id":"example_unified_role_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_app_scope '{"unified_role_eligibility_schedule_id":"example_unified_role_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_directory_scope

Get directoryScope from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/directoryScope.

Read read
Parameters
unified_role_eligibility_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_directory_scope '{"unified_role_eligibility_schedule_id":"example_unified_role_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_directory_scope '{"unified_role_eligibility_schedule_id":"example_unified_role_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_principal

Get principal from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/principal.

Read read
Parameters
unified_role_eligibility_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_principal '{"unified_role_eligibility_schedule_id":"example_unified_role_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_principal '{"unified_role_eligibility_schedule_id":"example_unified_role_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_role_definition

Get roleDefinition from roleManagement\n\nOfficial Microsoft Graph v1.0 endpoint: GET /roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/roleDefinition.

Read read
Parameters
unified_role_eligibility_schedule_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_role_definition '{"unified_role_eligibility_schedule_id":"example_unified_role_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_role_definition '{"unified_role_eligibility_schedule_id":"example_unified_role_eligibility_schedule_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_list_service_principal

List servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_list_service_principal '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_list_service_principal '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_create_service_principal

Create servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_create_service_principal '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_create_service_principal '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_delete_service_principal_by_app_id

Delete servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals(appId='{appId}').

Write write
Parameters
app_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_delete_service_principal_by_app_id '{"app_id":"example_app_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_delete_service_principal_by_app_id '{"app_id":"example_app_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_get_service_principal_by_app_id

Get servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals(appId='{appId}').

Read read
Parameters
app_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_get_service_principal_by_app_id '{"app_id":"example_app_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_get_service_principal_by_app_id '{"app_id":"example_app_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_update_service_principal_by_app_id

Upsert servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /servicePrincipals(appId='{appId}').

Write write
Parameters
app_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_update_service_principal_by_app_id '{"app_id":"example_app_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_update_service_principal_by_app_id '{"app_id":"example_app_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_count_da6d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_count_da6d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_count_da6d '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_delta

Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/delta().

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_available_extension_properties

Invoke action getAvailableExtensionProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/getAvailableExtensionProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_by_ids

Invoke action getByIds\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/getByIds.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_validate_properties

Invoke action validateProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/validateProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_delete_service_principal

Delete servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_delete_service_principal '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_delete_service_principal '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_get_service_principal

Get servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_get_service_principal '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_get_service_principal '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_update_service_principal

Upsert servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /servicePrincipals/{servicePrincipal-id}.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_update_service_principal '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_update_service_principal '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_add_key

Invoke action addKey\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/addKey.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_add_key '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_add_key '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_add_password

Invoke action addPassword\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/addPassword.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_add_password '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_add_password '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_add_token_signing_certificate

Invoke action addTokenSigningCertificate\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/addTokenSigningCertificate.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_add_token_signing_certificate '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_add_token_signing_certificate '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_app_management_policies

Get appManagementPolicies from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/appManagementPolicies.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_app_management_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_app_management_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_app_management_policies_get_count_5cee

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/appManagementPolicies/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_app_management_policies_get_count_5cee '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_app_management_policies_get_count_5cee '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_app_management_policies

Get appManagementPolicies from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/appManagementPolicies/{appManagementPolicy-id}.

Read read
Parameters
service_principal_id, app_management_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_app_management_policies '{"service_principal_id":"example_service_principal_id","app_management_policy_id":"example_app_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_app_management_policies '{"service_principal_id":"example_service_principal_id","app_management_policy_id":"example_app_management_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_app_role_assigned_to

Get appRoleAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_app_role_assigned_to '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_app_role_assigned_to '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_create_app_role_assigned_to

Grant an appRoleAssignment for a service principal\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_create_app_role_assigned_to '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_create_app_role_assigned_to '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_app_role_assigned_to_get_count_705c

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_app_role_assigned_to_get_count_705c '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_app_role_assigned_to_get_count_705c '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_delete_app_role_assigned_to

Delete appRoleAssignedTo\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}.

Write write
Parameters
service_principal_id, app_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_delete_app_role_assigned_to '{"service_principal_id":"example_service_principal_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_delete_app_role_assigned_to '{"service_principal_id":"example_service_principal_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_app_role_assigned_to

Get appRoleAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}.

Read read
Parameters
service_principal_id, app_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_app_role_assigned_to '{"service_principal_id":"example_service_principal_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_app_role_assigned_to '{"service_principal_id":"example_service_principal_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_update_app_role_assigned_to

Update the navigation property appRoleAssignedTo in servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}.

Write write
Parameters
service_principal_id, app_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_update_app_role_assigned_to '{"service_principal_id":"example_service_principal_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_update_app_role_assigned_to '{"service_principal_id":"example_service_principal_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_app_role_assignments

Get appRoleAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/appRoleAssignments.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_app_role_assignments '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_app_role_assignments '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_create_app_role_assignments

Grant an appRoleAssignment to a service principal\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/appRoleAssignments.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_create_app_role_assignments '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_create_app_role_assignments '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_app_role_assignments_get_count_4e95

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/appRoleAssignments/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_app_role_assignments_get_count_4e95 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_app_role_assignments_get_count_4e95 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_delete_app_role_assignments

Delete appRoleAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}.

Write write
Parameters
service_principal_id, app_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_delete_app_role_assignments '{"service_principal_id":"example_service_principal_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_delete_app_role_assignments '{"service_principal_id":"example_service_principal_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_app_role_assignments

Get appRoleAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}.

Read read
Parameters
service_principal_id, app_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_app_role_assignments '{"service_principal_id":"example_service_principal_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_app_role_assignments '{"service_principal_id":"example_service_principal_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_update_app_role_assignments

Update the navigation property appRoleAssignments in servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}.

Write write
Parameters
service_principal_id, app_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_update_app_role_assignments '{"service_principal_id":"example_service_principal_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_update_app_role_assignments '{"service_principal_id":"example_service_principal_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_check_member_groups

Invoke action checkMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/checkMemberGroups.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_check_member_groups '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_check_member_groups '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_check_member_objects

Invoke action checkMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/checkMemberObjects.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_check_member_objects '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_check_member_objects '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_claims_mapping_policies

List assigned claimsMappingPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_claims_mapping_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_claims_mapping_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_claims_mapping_policies_get_count_832a

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_claims_mapping_policies_get_count_832a '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_claims_mapping_policies_get_count_832a '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_claims_mapping_policies

Remove claimsMappingPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_claims_mapping_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_delete_ref_claims_mapping_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_claims_mapping_policies

List assigned claimsMappingPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_claims_mapping_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_ref_claims_mapping_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_claims_mapping_policies

Assign claimsMappingPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_claims_mapping_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_create_ref_claims_mapping_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_claims_mapping_policies_delete_ref_claims_mapping_policy

Remove claimsMappingPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/{claimsMappingPolicy-id}/$ref.

Write write
Parameters
service_principal_id, claims_mapping_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_claims_mapping_policies_delete_ref_claims_mapping_policy '{"service_principal_id":"example_service_principal_id","claims_mapping_policy_id":"example_claims_mapping_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_claims_mapping_policies_delete_ref_claims_mapping_policy '{"service_principal_id":"example_service_principal_id","claims_mapping_policy_id":"example_claims_mapping_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_created_objects

servicePrincipal: List createdObjects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/createdObjects.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_created_objects '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_created_objects '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_created_objects_get_count_0714

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/createdObjects/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_created_objects_get_count_0714 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_created_objects_get_count_0714 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_created_objects_as_service_principal

Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/createdObjects/graph.servicePrincipal.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_created_objects_as_service_principal '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_created_objects_as_service_principal '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_created_objects_get_count_as_service_principal_768a

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/createdObjects/graph.servicePrincipal/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_created_objects_get_count_as_service_principal_768a '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_created_objects_get_count_as_service_principal_768a '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_created_objects

Get createdObjects from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/createdObjects/{directoryObject-id}.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_created_objects '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_created_objects '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_created_objects_as_service_principal

Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/createdObjects/{directoryObject-id}/graph.servicePrincipal.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_created_objects_as_service_principal '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_created_objects_as_service_principal '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_delegated_permission_classifications

List delegatedPermissionClassifications collection of servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_delegated_permission_classifications '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_delegated_permission_classifications '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_create_delegated_permission_classifications

Create delegatedPermissionClassification\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_create_delegated_permission_classifications '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_create_delegated_permission_classifications '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_delegated_permission_classifications_get_count_31f9

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_delegated_permission_classifications_get_count_31f9 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_delegated_permission_classifications_get_count_31f9 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_delete_delegated_permission_classifications

Delete delegatedPermissionClassification\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}.

Write write
Parameters
service_principal_id, delegated_permission_classification_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_delete_delegated_permission_classifications '{"service_principal_id":"example_service_principal_id","delegated_permission_classification_id":"example_delegated_permission_classification_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_delete_delegated_permission_classifications '{"service_principal_id":"example_service_principal_id","delegated_permission_classification_id":"example_delegated_permission_classification_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_delegated_permission_classifications

Get delegatedPermissionClassifications from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}.

Read read
Parameters
service_principal_id, delegated_permission_classification_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_delegated_permission_classifications '{"service_principal_id":"example_service_principal_id","delegated_permission_classification_id":"example_delegated_permission_classification_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_delegated_permission_classifications '{"service_principal_id":"example_service_principal_id","delegated_permission_classification_id":"example_delegated_permission_classification_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_update_delegated_permission_classifications

Update the navigation property delegatedPermissionClassifications in servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}.

Write write
Parameters
service_principal_id, delegated_permission_classification_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_update_delegated_permission_classifications '{"service_principal_id":"example_service_principal_id","delegated_permission_classification_id":"example_delegated_permission_classification_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_update_delegated_permission_classifications '{"service_principal_id":"example_service_principal_id","delegated_permission_classification_id":"example_delegated_permission_classification_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_endpoints

Get endpoints from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/endpoints.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_endpoints '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_endpoints '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_create_endpoints

Create new navigation property to endpoints for servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/endpoints.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_create_endpoints '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_create_endpoints '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_endpoints_get_count_c0e0

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/endpoints/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_endpoints_get_count_c0e0 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_endpoints_get_count_c0e0 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_delete_endpoints

Delete navigation property endpoints for servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}.

Write write
Parameters
service_principal_id, endpoint_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_delete_endpoints '{"service_principal_id":"example_service_principal_id","endpoint_id":"example_endpoint_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_delete_endpoints '{"service_principal_id":"example_service_principal_id","endpoint_id":"example_endpoint_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_endpoints

Get endpoints from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}.

Read read
Parameters
service_principal_id, endpoint_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_endpoints '{"service_principal_id":"example_service_principal_id","endpoint_id":"example_endpoint_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_endpoints '{"service_principal_id":"example_service_principal_id","endpoint_id":"example_endpoint_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_update_endpoints

Update the navigation property endpoints in servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}.

Write write
Parameters
service_principal_id, endpoint_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_update_endpoints '{"service_principal_id":"example_service_principal_id","endpoint_id":"example_endpoint_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_update_endpoints '{"service_principal_id":"example_service_principal_id","endpoint_id":"example_endpoint_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_federated_identity_credentials

Get federatedIdentityCredentials from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/federatedIdentityCredentials.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_federated_identity_credentials '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_federated_identity_credentials '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_create_federated_identity_credentials

Create new navigation property to federatedIdentityCredentials for servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/federatedIdentityCredentials.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_create_federated_identity_credentials '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_create_federated_identity_credentials '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_federated_identity_credentials_delete_by_name

Delete navigation property federatedIdentityCredentials for servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/federatedIdentityCredentials(name='{name}').

Write write
Parameters
service_principal_id, name, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_federated_identity_credentials_delete_by_name '{"service_principal_id":"example_service_principal_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_federated_identity_credentials_delete_by_name '{"service_principal_id":"example_service_principal_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_federated_identity_credentials_get_by_name

Get federatedIdentityCredentials from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/federatedIdentityCredentials(name='{name}').

Read read
Parameters
service_principal_id, name, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_federated_identity_credentials_get_by_name '{"service_principal_id":"example_service_principal_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_federated_identity_credentials_get_by_name '{"service_principal_id":"example_service_principal_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_federated_identity_credentials_update_by_name

Update the navigation property federatedIdentityCredentials in servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /servicePrincipals/{servicePrincipal-id}/federatedIdentityCredentials(name='{name}').

Write write
Parameters
service_principal_id, name, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_federated_identity_credentials_update_by_name '{"service_principal_id":"example_service_principal_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_federated_identity_credentials_update_by_name '{"service_principal_id":"example_service_principal_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_federated_identity_credentials_get_count_d9cd

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/federatedIdentityCredentials/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_federated_identity_credentials_get_count_d9cd '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_federated_identity_credentials_get_count_d9cd '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_delete_federated_identity_credentials

Delete navigation property federatedIdentityCredentials for servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}.

Write write
Parameters
service_principal_id, federated_identity_credential_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_delete_federated_identity_credentials '{"service_principal_id":"example_service_principal_id","federated_identity_credential_id":"example_federated_identity_credential_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_delete_federated_identity_credentials '{"service_principal_id":"example_service_principal_id","federated_identity_credential_id":"example_federated_identity_credential_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_federated_identity_credentials

Get federatedIdentityCredentials from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}.

Read read
Parameters
service_principal_id, federated_identity_credential_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_federated_identity_credentials '{"service_principal_id":"example_service_principal_id","federated_identity_credential_id":"example_federated_identity_credential_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_federated_identity_credentials '{"service_principal_id":"example_service_principal_id","federated_identity_credential_id":"example_federated_identity_credential_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_update_federated_identity_credentials

Update the navigation property federatedIdentityCredentials in servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /servicePrincipals/{servicePrincipal-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}.

Write write
Parameters
service_principal_id, federated_identity_credential_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_update_federated_identity_credentials '{"service_principal_id":"example_service_principal_id","federated_identity_credential_id":"example_federated_identity_credential_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_update_federated_identity_credentials '{"service_principal_id":"example_service_principal_id","federated_identity_credential_id":"example_federated_identity_credential_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_get_member_groups

Invoke action getMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/getMemberGroups.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_get_member_groups '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_get_member_groups '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_get_member_objects

Invoke action getMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/getMemberObjects.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_get_member_objects '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_get_member_objects '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_home_realm_discovery_policies

List assigned homeRealmDiscoveryPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_home_realm_discovery_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_home_realm_discovery_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_home_realm_discovery_policies_get_count_d161

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_home_realm_discovery_policies_get_count_d161 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_home_realm_discovery_policies_get_count_d161 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_home_realm_discovery_policies

Remove homeRealmDiscoveryPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_home_realm_discovery_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_delete_ref_home_realm_discovery_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_home_realm_discovery_policies

List assigned homeRealmDiscoveryPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_home_realm_discovery_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_ref_home_realm_discovery_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_home_realm_discovery_policies

Assign homeRealmDiscoveryPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_home_realm_discovery_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_create_ref_home_realm_discovery_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_home_realm_discovery_policies_delete_ref_home_realm_discovery_policy

Remove homeRealmDiscoveryPolicy\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/$ref.

Write write
Parameters
service_principal_id, home_realm_discovery_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_home_realm_discovery_policies_delete_ref_home_realm_discovery_policy '{"service_principal_id":"example_service_principal_id","home_realm_discovery_policy_id":"example_home_realm_discovery_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_home_realm_discovery_policies_delete_ref_home_realm_discovery_policy '{"service_principal_id":"example_service_principal_id","home_realm_discovery_policy_id":"example_home_realm_discovery_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_member_of

List servicePrincipal memberOf\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/memberOf.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_member_of '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_member_of '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_member_of_get_count_be11

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/memberOf/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_member_of_get_count_be11 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_member_of_get_count_be11 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_member_of_as_administrative_unit

Get the items of type microsoft.graph.administrativeUnit in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/memberOf/graph.administrativeUnit.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_member_of_as_administrative_unit '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_member_of_as_administrative_unit '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_member_of_get_count_as_administrative_unit_472e

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/memberOf/graph.administrativeUnit/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_member_of_get_count_as_administrative_unit_472e '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_member_of_get_count_as_administrative_unit_472e '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_member_of_as_directory_role

Get the items of type microsoft.graph.directoryRole in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/memberOf/graph.directoryRole.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_member_of_as_directory_role '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_member_of_as_directory_role '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_member_of_get_count_as_directory_role_fa4e

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/memberOf/graph.directoryRole/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_member_of_get_count_as_directory_role_fa4e '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_member_of_get_count_as_directory_role_fa4e '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_member_of_as_group

Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/memberOf/graph.group.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_member_of_as_group '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_member_of_as_group '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_member_of_get_count_as_group_96d9

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/memberOf/graph.group/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_member_of_get_count_as_group_96d9 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_member_of_get_count_as_group_96d9 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_member_of

Get memberOf from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_member_of '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_member_of '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_member_of_as_administrative_unit

Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/graph.administrativeUnit.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_member_of_as_administrative_unit '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_member_of_as_administrative_unit '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_member_of_as_directory_role

Get the item of type microsoft.graph.directoryObject as microsoft.graph.directoryRole\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/graph.directoryRole.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_member_of_as_directory_role '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_member_of_as_directory_role '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_member_of_as_group

Get the item of type microsoft.graph.directoryObject as microsoft.graph.group\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/graph.group.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_member_of_as_group '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_member_of_as_group '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_oauth2_permission_grants

List oauth2PermissionGrants granted to a service principal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_oauth2_permission_grants '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_oauth2_permission_grants '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_oauth2_permission_grants_get_count_f9dc

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_oauth2_permission_grants_get_count_f9dc '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_oauth2_permission_grants_get_count_f9dc '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_oauth2_permission_grants

Get oauth2PermissionGrants from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/{oAuth2PermissionGrant-id}.

Read read
Parameters
service_principal_id, o_auth2_permission_grant_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_oauth2_permission_grants '{"service_principal_id":"example_service_principal_id","o_auth2_permission_grant_id":"example_o_auth2_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_oauth2_permission_grants '{"service_principal_id":"example_service_principal_id","o_auth2_permission_grant_id":"example_o_auth2_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects

servicePrincipals: List ownedObjects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/ownedObjects.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_owned_objects '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_7ae7

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/ownedObjects/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_7ae7 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_owned_objects_get_count_7ae7 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_app_role_assignment

Get the items of type microsoft.graph.appRoleAssignment in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/ownedObjects/graph.appRoleAssignment.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_app_role_assignment '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_owned_objects_as_app_role_assignment '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_app_role_assignment_793c

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/ownedObjects/graph.appRoleAssignment/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_app_role_assignment_793c '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_owned_objects_get_count_as_app_role_assignment_793c '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_application

Get the items of type microsoft.graph.application in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/ownedObjects/graph.application.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_application '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_owned_objects_as_application '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_application_2b95

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/ownedObjects/graph.application/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_application_2b95 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_owned_objects_get_count_as_application_2b95 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_endpoint

Get the items of type microsoft.graph.endpoint in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/ownedObjects/graph.endpoint.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_endpoint '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_owned_objects_as_endpoint '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_endpoint_4594

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/ownedObjects/graph.endpoint/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_endpoint_4594 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_owned_objects_get_count_as_endpoint_4594 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_group

Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/ownedObjects/graph.group.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_group '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_owned_objects_as_group '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_group_fc2e

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/ownedObjects/graph.group/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_group_fc2e '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_owned_objects_get_count_as_group_fc2e '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_service_principal

Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/ownedObjects/graph.servicePrincipal.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_service_principal '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_owned_objects_as_service_principal '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_service_principal_19c0

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/ownedObjects/graph.servicePrincipal/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_service_principal_19c0 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_owned_objects_get_count_as_service_principal_19c0 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects

Get ownedObjects from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_owned_objects '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_app_role_assignment

Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/graph.appRoleAssignment.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_app_role_assignment '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_owned_objects_as_app_role_assignment '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_application

Get the item of type microsoft.graph.directoryObject as microsoft.graph.application\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/graph.application.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_application '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_owned_objects_as_application '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_endpoint

Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/graph.endpoint.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_endpoint '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_owned_objects_as_endpoint '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_group

Get the item of type microsoft.graph.directoryObject as microsoft.graph.group\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/graph.group.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_group '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_owned_objects_as_group '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_service_principal

Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/graph.servicePrincipal.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_service_principal '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_owned_objects_as_service_principal '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_owners

Get owners from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/owners.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_owners '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_owners '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_ec9a

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/owners/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_ec9a '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_owners_get_count_ec9a '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_owners

Remove service principal owner\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/owners/$ref.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_owners '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_delete_ref_owners '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_owners

Get ref of owners from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/owners/$ref.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_owners '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_ref_owners '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_owners

servicePrincipal: Add owner\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/owners/$ref.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_owners '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_create_ref_owners '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_owners_as_app_role_assignment

Get the items of type microsoft.graph.appRoleAssignment in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/owners/graph.appRoleAssignment.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_owners_as_app_role_assignment '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_owners_as_app_role_assignment '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_as_app_role_assignment_abce

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/owners/graph.appRoleAssignment/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_as_app_role_assignment_abce '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_owners_get_count_as_app_role_assignment_abce '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_owners_as_endpoint

Get the items of type microsoft.graph.endpoint in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/owners/graph.endpoint.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_owners_as_endpoint '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_owners_as_endpoint '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_as_endpoint_9454

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/owners/graph.endpoint/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_as_endpoint_9454 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_owners_get_count_as_endpoint_9454 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_owners_as_service_principal

Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/owners/graph.servicePrincipal.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_owners_as_service_principal '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_owners_as_service_principal '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_as_service_principal_c35b

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/owners/graph.servicePrincipal/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_as_service_principal_c35b '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_owners_get_count_as_service_principal_c35b '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_owners_as_user

Get the items of type microsoft.graph.user in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/owners/graph.user.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_owners_as_user '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_owners_as_user '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_as_user_aab7

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/owners/graph.user/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_as_user_aab7 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_owners_get_count_as_user_aab7 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_owners_delete_ref_directory_object

Remove service principal owner\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/$ref.

Write write
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_owners_delete_ref_directory_object '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_owners_delete_ref_directory_object '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_owners_as_app_role_assignment

Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/graph.appRoleAssignment.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_owners_as_app_role_assignment '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_owners_as_app_role_assignment '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_owners_as_endpoint

Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/graph.endpoint.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_owners_as_endpoint '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_owners_as_endpoint '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_owners_as_service_principal

Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/graph.servicePrincipal.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_owners_as_service_principal '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_owners_as_service_principal '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_owners_as_user

Get the item of type microsoft.graph.directoryObject as microsoft.graph.user\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/graph.user.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_owners_as_user '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_owners_as_user '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_delete_remote_desktop_security_configuration

Delete remoteDesktopSecurityConfiguration\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_delete_remote_desktop_security_configuration '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_delete_remote_desktop_security_configuration '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_remote_desktop_security_configuration

Get remoteDesktopSecurityConfiguration\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_remote_desktop_security_configuration '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_remote_desktop_security_configuration '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_update_remote_desktop_security_configuration

Update remoteDesktopSecurityConfiguration\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_update_remote_desktop_security_configuration '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_update_remote_desktop_security_configuration '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_list_approved_client_apps

List approvedClientApp objects\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/approvedClientApps.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_list_approved_client_apps '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_remote_desktop_security_configuration_list_approved_client_apps '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_create_approved_client_apps

Create approvedClientApp\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/approvedClientApps.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_create_approved_client_apps '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_remote_desktop_security_configuration_create_approved_client_apps '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_approved_client_apps_get_count_bea1

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/approvedClientApps/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_approved_client_apps_get_count_bea1 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_remote_desktop_security_configuration_approved_client_apps_get_count_bea1 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_delete_approved_client_apps

Delete approvedClientApp\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/approvedClientApps/{approvedClientApp-id}.

Write write
Parameters
service_principal_id, approved_client_app_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_delete_approved_client_apps '{"service_principal_id":"example_service_principal_id","approved_client_app_id":"example_approved_client_app_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_remote_desktop_security_configuration_delete_approved_client_apps '{"service_principal_id":"example_service_principal_id","approved_client_app_id":"example_approved_client_app_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_get_approved_client_apps

Get approvedClientApp\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/approvedClientApps/{approvedClientApp-id}.

Read read
Parameters
service_principal_id, approved_client_app_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_get_approved_client_apps '{"service_principal_id":"example_service_principal_id","approved_client_app_id":"example_approved_client_app_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_remote_desktop_security_configuration_get_approved_client_apps '{"service_principal_id":"example_service_principal_id","approved_client_app_id":"example_approved_client_app_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_update_approved_client_apps

Update approvedClientApp\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/approvedClientApps/{approvedClientApp-id}.

Write write
Parameters
service_principal_id, approved_client_app_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_update_approved_client_apps '{"service_principal_id":"example_service_principal_id","approved_client_app_id":"example_approved_client_app_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_remote_desktop_security_configuration_update_approved_client_apps '{"service_principal_id":"example_service_principal_id","approved_client_app_id":"example_approved_client_app_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_list_target_device_groups

List targetDeviceGroups\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_list_target_device_groups '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_remote_desktop_security_configuration_list_target_device_groups '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_create_target_device_groups

Create targetDeviceGroup\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_create_target_device_groups '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_remote_desktop_security_configuration_create_target_device_groups '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_target_device_groups_get_count_51f5

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_target_device_groups_get_count_51f5 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_remote_desktop_security_configuration_target_device_groups_get_count_51f5 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_delete_target_device_groups

Delete targetDeviceGroup\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{targetDeviceGroup-id}.

Write write
Parameters
service_principal_id, target_device_group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_delete_target_device_groups '{"service_principal_id":"example_service_principal_id","target_device_group_id":"example_target_device_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_remote_desktop_security_configuration_delete_target_device_groups '{"service_principal_id":"example_service_principal_id","target_device_group_id":"example_target_device_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_get_target_device_groups

Get targetDeviceGroup\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{targetDeviceGroup-id}.

Read read
Parameters
service_principal_id, target_device_group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_get_target_device_groups '{"service_principal_id":"example_service_principal_id","target_device_group_id":"example_target_device_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_remote_desktop_security_configuration_get_target_device_groups '{"service_principal_id":"example_service_principal_id","target_device_group_id":"example_target_device_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_update_target_device_groups

Update targetDeviceGroup\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{targetDeviceGroup-id}.

Write write
Parameters
service_principal_id, target_device_group_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_update_target_device_groups '{"service_principal_id":"example_service_principal_id","target_device_group_id":"example_target_device_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_remote_desktop_security_configuration_update_target_device_groups '{"service_principal_id":"example_service_principal_id","target_device_group_id":"example_target_device_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_remove_key

Invoke action removeKey\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/removeKey.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_remove_key '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_remove_key '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_remove_password

Invoke action removePassword\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/removePassword.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_remove_password '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_remove_password '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_restore

Invoke action restore\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/restore.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_restore '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_restore '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_delete_synchronization

Delete navigation property synchronization for servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/synchronization.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_delete_synchronization '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_delete_synchronization '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_synchronization

Get synchronization from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_synchronization '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_synchronization '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_set_synchronization

Update the navigation property synchronization in servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /servicePrincipals/{servicePrincipal-id}/synchronization.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_set_synchronization '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_set_synchronization '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_acquire_access_token

Invoke action acquireAccessToken\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/synchronization/acquireAccessToken.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_acquire_access_token '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_synchronization_acquire_access_token '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_list_jobs

List synchronization jobs\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/jobs.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_list_jobs '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_list_jobs '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_create_jobs

Create synchronizationJob\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/synchronization/jobs.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_create_jobs '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_create_jobs '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_get_count_5eba

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_get_count_5eba '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_jobs_get_count_5eba '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_validate_credentials

Invoke action validateCredentials\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/validateCredentials.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_validate_credentials '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_synchronization_jobs_validate_credentials '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_delete_jobs

Delete synchronizationJob\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}.

Write write
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_delete_jobs '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_delete_jobs '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_get_jobs

Get synchronizationJob\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}.

Read read
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_get_jobs '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_get_jobs '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_update_jobs

Update the navigation property jobs in servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}.

Write write
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_update_jobs '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_update_jobs '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_delete_bulk_upload

Delete navigation property bulkUpload for servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload.

Write write
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_delete_bulk_upload '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_jobs_delete_bulk_upload '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_get_bulk_upload

Get bulkUpload from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload.

Read read
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_get_bulk_upload '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_jobs_get_bulk_upload '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_update_bulk_upload

Update the navigation property bulkUpload in servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload.

Write write
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_update_bulk_upload '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_jobs_update_bulk_upload '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_delete_bulk_upload_content

Delete media content for the navigation property bulkUpload in servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value.

Write write
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_delete_bulk_upload_content '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_jobs_delete_bulk_upload_content '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_get_bulk_upload_content

Get media content for the navigation property bulkUpload from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value.

Read read
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_get_bulk_upload_content '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_jobs_get_bulk_upload_content '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_update_bulk_upload_content

Update media content for the navigation property bulkUpload in servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value.

Write write
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_update_bulk_upload_content '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_jobs_update_bulk_upload_content '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_pause

Invoke action pause\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/pause.

Read read
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_pause '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_pause '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_provision_on_demand

Invoke action provisionOnDemand\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/provisionOnDemand.

Read read
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_provision_on_demand '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_provision_on_demand '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_restart

Invoke action restart\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/restart.

Read read
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_restart '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_restart '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_delete_schema

Delete navigation property schema for servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema.

Write write
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_delete_schema '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_jobs_delete_schema '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_get_schema

Get synchronizationSchema\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema.

Read read
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_get_schema '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_jobs_get_schema '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_update_schema

Update synchronizationSchema\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema.

Write write
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_update_schema '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_jobs_update_schema '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_list_directories

Get directories from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories.

Read read
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_list_directories '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_jobs_schema_list_directories '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_create_directories

Create new navigation property to directories for servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories.

Write write
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_create_directories '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_jobs_schema_create_directories '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_directories_get_count_af56

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/$count.

Read read
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_directories_get_count_af56 '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_jobs_schema_directories_get_count_af56 '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_delete_directories

Delete navigation property directories for servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}.

Write write
Parameters
service_principal_id, synchronization_job_id, directory_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_delete_directories '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_jobs_schema_delete_directories '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_get_directories

Get directories from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}.

Read read
Parameters
service_principal_id, synchronization_job_id, directory_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_get_directories '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_jobs_schema_get_directories '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_update_directories

Update the navigation property directories in servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}.

Write write
Parameters
service_principal_id, synchronization_job_id, directory_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_update_directories '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_jobs_schema_update_directories '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_directories_directory_definition_discover

Invoke action discover\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover.

Read read
Parameters
service_principal_id, synchronization_job_id, directory_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_directories_directory_definition_discover '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_directories_directory_definition_discover '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_filter_operators

Invoke function filterOperators\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/filterOperators().

Read read
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_filter_operators '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_filter_operators '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_functions

Invoke function functions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/functions().

Read read
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_functions '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_functions '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_parse_expression

Invoke action parseExpression\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/parseExpression.

Read read
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_parse_expression '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_parse_expression '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_start

Invoke action start\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/start.

Read read
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_start '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_start '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_validate_credentials

Invoke action validateCredentials\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/validateCredentials.

Read read
Parameters
service_principal_id, synchronization_job_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_validate_credentials '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_validate_credentials '{"service_principal_id":"example_service_principal_id","synchronization_job_id":"example_synchronization_job_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_set_secrets

Add synchronization secrets\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /servicePrincipals/{servicePrincipal-id}/synchronization/secrets.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_set_secrets '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_set_secrets '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_secrets_get_count_65c9

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/secrets/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_secrets_get_count_65c9 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_secrets_get_count_65c9 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_list_templates

List existing synchronization templates\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/templates.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_list_templates '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_list_templates '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_create_templates

Create new navigation property to templates for servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/synchronization/templates.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_create_templates '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_create_templates '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_get_count_1c9d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/templates/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_get_count_1c9d '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_templates_get_count_1c9d '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_delete_templates

Delete navigation property templates for servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}.

Write write
Parameters
service_principal_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_delete_templates '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_delete_templates '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_get_templates

Get templates from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}.

Read read
Parameters
service_principal_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_get_templates '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_get_templates '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_update_templates

Update the navigation property templates in servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}.

Write write
Parameters
service_principal_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_update_templates '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_update_templates '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_delete_schema

Delete navigation property schema for servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema.

Write write
Parameters
service_principal_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_delete_schema '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_templates_delete_schema '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_get_schema

Get schema from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema.

Read read
Parameters
service_principal_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_get_schema '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_templates_get_schema '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_update_schema

Update the navigation property schema in servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema.

Write write
Parameters
service_principal_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_update_schema '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_templates_update_schema '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_list_directories

Get directories from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories.

Read read
Parameters
service_principal_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_list_directories '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_templates_schema_list_directories '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_create_directories

Create new navigation property to directories for servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories.

Write write
Parameters
service_principal_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_create_directories '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_templates_schema_create_directories '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_directories_get_count_f937

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/$count.

Read read
Parameters
service_principal_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_directories_get_count_f937 '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_templates_schema_directories_get_count_f937 '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_delete_directories

Delete navigation property directories for servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}.

Write write
Parameters
service_principal_id, synchronization_template_id, directory_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_delete_directories '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_templates_schema_delete_directories '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_get_directories

Get directories from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}.

Read read
Parameters
service_principal_id, synchronization_template_id, directory_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_get_directories '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_templates_schema_get_directories '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_update_directories

Update the navigation property directories in servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}.

Write write
Parameters
service_principal_id, synchronization_template_id, directory_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_update_directories '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_synchronization_templates_schema_update_directories '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_directories_directory_definition_discover

Invoke action discover\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover.

Read read
Parameters
service_principal_id, synchronization_template_id, directory_definition_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_directories_directory_definition_discover '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_directories_directory_definition_discover '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","directory_definition_id":"example_directory_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_filter_operators

Invoke function filterOperators\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/filterOperators().

Read read
Parameters
service_principal_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_filter_operators '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_filter_operators '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_functions

Invoke function functions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/functions().

Read read
Parameters
service_principal_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_functions '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_functions '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_parse_expression

Invoke action parseExpression\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/parseExpression.

Read read
Parameters
service_principal_id, synchronization_template_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_parse_expression '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_parse_expression '{"service_principal_id":"example_service_principal_id","synchronization_template_id":"example_synchronization_template_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_token_issuance_policies

Get tokenIssuancePolicies from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_token_issuance_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_token_issuance_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_token_issuance_policies_get_count_578b

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_token_issuance_policies_get_count_578b '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_token_issuance_policies_get_count_578b '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_token_issuance_policies

Delete ref of navigation property tokenIssuancePolicies for servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/$ref.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_token_issuance_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_delete_ref_token_issuance_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_token_issuance_policies

Get ref of tokenIssuancePolicies from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/$ref.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_token_issuance_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_ref_token_issuance_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_token_issuance_policies

Create new navigation property ref to tokenIssuancePolicies for servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/$ref.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_token_issuance_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_create_ref_token_issuance_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_token_issuance_policies_delete_ref_token_issuance_policy

Delete ref of navigation property tokenIssuancePolicies for servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/{tokenIssuancePolicy-id}/$ref.

Write write
Parameters
service_principal_id, token_issuance_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_token_issuance_policies_delete_ref_token_issuance_policy '{"service_principal_id":"example_service_principal_id","token_issuance_policy_id":"example_token_issuance_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_token_issuance_policies_delete_ref_token_issuance_policy '{"service_principal_id":"example_service_principal_id","token_issuance_policy_id":"example_token_issuance_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_token_lifetime_policies

List assigned tokenLifetimePolicies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_token_lifetime_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_token_lifetime_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_token_lifetime_policies_get_count_4121

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_token_lifetime_policies_get_count_4121 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_token_lifetime_policies_get_count_4121 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_token_lifetime_policies

Remove tokenLifetimePolicies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/$ref.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_token_lifetime_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_delete_ref_token_lifetime_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_token_lifetime_policies

List assigned tokenLifetimePolicies\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/$ref.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_token_lifetime_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_ref_token_lifetime_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_token_lifetime_policies

Add tokenLifetimePolicy\n\nOfficial Microsoft Graph v1.0 endpoint: POST /servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/$ref.

Write write
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_token_lifetime_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_create_ref_token_lifetime_policies '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_token_lifetime_policies_delete_ref_token_lifetime_policy

Remove tokenLifetimePolicies\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/{tokenLifetimePolicy-id}/$ref.

Write write
Parameters
service_principal_id, token_lifetime_policy_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_token_lifetime_policies_delete_ref_token_lifetime_policy '{"service_principal_id":"example_service_principal_id","token_lifetime_policy_id":"example_token_lifetime_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_token_lifetime_policies_delete_ref_token_lifetime_policy '{"service_principal_id":"example_service_principal_id","token_lifetime_policy_id":"example_token_lifetime_policy_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_transitive_member_of

List servicePrincipal transitive memberOf\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/transitiveMemberOf.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_transitive_member_of '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_transitive_member_of '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_transitive_member_of_get_count_4794

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_transitive_member_of_get_count_4794 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_transitive_member_of_get_count_4794 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_transitive_member_of_as_administrative_unit

Get the items of type microsoft.graph.administrativeUnit in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/graph.administrativeUnit.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_transitive_member_of_as_administrative_unit '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_transitive_member_of_as_administrative_unit '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_transitive_member_of_get_count_as_administrative_unit_4450

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/graph.administrativeUnit/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_transitive_member_of_get_count_as_administrative_unit_4450 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_transitive_member_of_get_count_as_administrative_unit_4450 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_transitive_member_of_as_directory_role

Get the items of type microsoft.graph.directoryRole in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/graph.directoryRole.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_transitive_member_of_as_directory_role '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_transitive_member_of_as_directory_role '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_transitive_member_of_get_count_as_directory_role_8951

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/graph.directoryRole/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_transitive_member_of_get_count_as_directory_role_8951 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_transitive_member_of_get_count_as_directory_role_8951 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_list_transitive_member_of_as_group

Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/graph.group.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_list_transitive_member_of_as_group '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_list_transitive_member_of_as_group '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_transitive_member_of_get_count_as_group_e005

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/graph.group/$count.

Read read
Parameters
service_principal_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_transitive_member_of_get_count_as_group_e005 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_transitive_member_of_get_count_as_group_e005 '{"service_principal_id":"example_service_principal_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_transitive_member_of

Get transitiveMemberOf from servicePrincipals\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_transitive_member_of '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_transitive_member_of '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_transitive_member_of_as_administrative_unit

Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/graph.administrativeUnit.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_transitive_member_of_as_administrative_unit '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_transitive_member_of_as_administrative_unit '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_transitive_member_of_as_directory_role

Get the item of type microsoft.graph.directoryObject as microsoft.graph.directoryRole\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/graph.directoryRole.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_transitive_member_of_as_directory_role '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_transitive_member_of_as_directory_role '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_service_principals_get_transitive_member_of_as_group

Get the item of type microsoft.graph.directoryObject as microsoft.graph.group\n\nOfficial Microsoft Graph v1.0 endpoint: GET /servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/graph.group.

Read read
Parameters
service_principal_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_service_principals_get_transitive_member_of_as_group '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_service_principals_get_transitive_member_of_as_group '{"service_principal_id":"example_service_principal_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_list_subscribed_sku

List subscribedSkus\n\nOfficial Microsoft Graph v1.0 endpoint: GET /subscribedSkus.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_list_subscribed_sku '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_subscribed_skus_subscribed_sku_list_subscribed_sku '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_create_subscribed_sku

Add new entity to subscribedSkus\n\nOfficial Microsoft Graph v1.0 endpoint: POST /subscribedSkus.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_create_subscribed_sku '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_subscribed_skus_subscribed_sku_create_subscribed_sku '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_delete_subscribed_sku

Delete entity from subscribedSkus\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /subscribedSkus/{subscribedSku-id}.

Write write
Parameters
subscribed_sku_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_delete_subscribed_sku '{"subscribed_sku_id":"example_subscribed_sku_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_subscribed_skus_subscribed_sku_delete_subscribed_sku '{"subscribed_sku_id":"example_subscribed_sku_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_get_subscribed_sku

Get subscribedSku\n\nOfficial Microsoft Graph v1.0 endpoint: GET /subscribedSkus/{subscribedSku-id}.

Read read
Parameters
subscribed_sku_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_get_subscribed_sku '{"subscribed_sku_id":"example_subscribed_sku_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_subscribed_skus_subscribed_sku_get_subscribed_sku '{"subscribed_sku_id":"example_subscribed_sku_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_update_subscribed_sku

Update entity in subscribedSkus\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /subscribedSkus/{subscribedSku-id}.

Write write
Parameters
subscribed_sku_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_update_subscribed_sku '{"subscribed_sku_id":"example_subscribed_sku_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_subscribed_skus_subscribed_sku_update_subscribed_sku '{"subscribed_sku_id":"example_subscribed_sku_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_tenant_relationship_get_tenant_relationship

Get tenantRelationships\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_tenant_relationship_get_tenant_relationship '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_tenant_relationship_get_tenant_relationship '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_tenant_relationship_update_tenant_relationship

Update tenantRelationships\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /tenantRelationships.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_tenant_relationship_update_tenant_relationship '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_tenant_relationship_update_tenant_relationship '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_list_delegated_admin_customers

List delegatedAdminCustomers\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/delegatedAdminCustomers.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_list_delegated_admin_customers '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_list_delegated_admin_customers '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_create_delegated_admin_customers

Create new navigation property to delegatedAdminCustomers for tenantRelationships\n\nOfficial Microsoft Graph v1.0 endpoint: POST /tenantRelationships/delegatedAdminCustomers.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_create_delegated_admin_customers '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_create_delegated_admin_customers '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_get_count_e293

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/delegatedAdminCustomers/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_get_count_e293 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_customers_get_count_e293 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delete_delegated_admin_customers

Delete navigation property delegatedAdminCustomers for tenantRelationships\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}.

Write write
Parameters
delegated_admin_customer_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delete_delegated_admin_customers '{"delegated_admin_customer_id":"example_delegated_admin_customer_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delete_delegated_admin_customers '{"delegated_admin_customer_id":"example_delegated_admin_customer_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_get_delegated_admin_customers

Get delegatedAdminCustomer\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}.

Read read
Parameters
delegated_admin_customer_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_get_delegated_admin_customers '{"delegated_admin_customer_id":"example_delegated_admin_customer_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_get_delegated_admin_customers '{"delegated_admin_customer_id":"example_delegated_admin_customer_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_update_delegated_admin_customers

Update the navigation property delegatedAdminCustomers in tenantRelationships\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}.

Write write
Parameters
delegated_admin_customer_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_update_delegated_admin_customers '{"delegated_admin_customer_id":"example_delegated_admin_customer_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_update_delegated_admin_customers '{"delegated_admin_customer_id":"example_delegated_admin_customer_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_list_service_management_details

List serviceManagementDetails\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails.

Read read
Parameters
delegated_admin_customer_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_list_service_management_details '{"delegated_admin_customer_id":"example_delegated_admin_customer_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_customers_list_service_management_details '{"delegated_admin_customer_id":"example_delegated_admin_customer_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_create_service_management_details

Create new navigation property to serviceManagementDetails for tenantRelationships\n\nOfficial Microsoft Graph v1.0 endpoint: POST /tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails.

Write write
Parameters
delegated_admin_customer_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_create_service_management_details '{"delegated_admin_customer_id":"example_delegated_admin_customer_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_customers_create_service_management_details '{"delegated_admin_customer_id":"example_delegated_admin_customer_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_service_management_details_get_count_d662

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/$count.

Read read
Parameters
delegated_admin_customer_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_service_management_details_get_count_d662 '{"delegated_admin_customer_id":"example_delegated_admin_customer_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_customers_service_management_details_get_count_d662 '{"delegated_admin_customer_id":"example_delegated_admin_customer_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_delete_service_management_details

Delete navigation property serviceManagementDetails for tenantRelationships\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/{delegatedAdminServiceManagementDetail-id}.

Write write
Parameters
delegated_admin_customer_id, delegated_admin_service_management_detail_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_delete_service_management_details '{"delegated_admin_customer_id":"example_delegated_admin_customer_id","delegated_admin_service_management_detail_id":"example_delegated_admin_service_management_detail_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_customers_delete_service_management_details '{"delegated_admin_customer_id":"example_delegated_admin_customer_id","delegated_admin_service_management_detail_id":"example_delegated_admin_service_management_detail_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_get_service_management_details

Get serviceManagementDetails from tenantRelationships\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/{delegatedAdminServiceManagementDetail-id}.

Read read
Parameters
delegated_admin_customer_id, delegated_admin_service_management_detail_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_get_service_management_details '{"delegated_admin_customer_id":"example_delegated_admin_customer_id","delegated_admin_service_management_detail_id":"example_delegated_admin_service_management_detail_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_customers_get_service_management_details '{"delegated_admin_customer_id":"example_delegated_admin_customer_id","delegated_admin_service_management_detail_id":"example_delegated_admin_service_management_detail_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_update_service_management_details

Update the navigation property serviceManagementDetails in tenantRelationships\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/{delegatedAdminServiceManagementDetail-id}.

Write write
Parameters
delegated_admin_customer_id, delegated_admin_service_management_detail_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_update_service_management_details '{"delegated_admin_customer_id":"example_delegated_admin_customer_id","delegated_admin_service_management_detail_id":"example_delegated_admin_service_management_detail_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_customers_update_service_management_details '{"delegated_admin_customer_id":"example_delegated_admin_customer_id","delegated_admin_service_management_detail_id":"example_delegated_admin_service_management_detail_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_list_delegated_admin_relationships

List delegatedAdminRelationships\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/delegatedAdminRelationships.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_list_delegated_admin_relationships '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_list_delegated_admin_relationships '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_create_delegated_admin_relationships

Create delegatedAdminRelationship\n\nOfficial Microsoft Graph v1.0 endpoint: POST /tenantRelationships/delegatedAdminRelationships.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_create_delegated_admin_relationships '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_create_delegated_admin_relationships '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_count_9d12

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/delegatedAdminRelationships/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_count_9d12 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_count_9d12 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delete_delegated_admin_relationships

Delete delegatedAdminRelationship\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}.

Write write
Parameters
delegated_admin_relationship_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delete_delegated_admin_relationships '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delete_delegated_admin_relationships '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_get_delegated_admin_relationships

Get delegatedAdminRelationship\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}.

Read read
Parameters
delegated_admin_relationship_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_get_delegated_admin_relationships '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_get_delegated_admin_relationships '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_update_delegated_admin_relationships

Update delegatedAdminRelationship\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}.

Write write
Parameters
delegated_admin_relationship_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_update_delegated_admin_relationships '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_update_delegated_admin_relationships '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_list_access_assignments

List accessAssignments\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments.

Read read
Parameters
delegated_admin_relationship_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_list_access_assignments '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_list_access_assignments '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_create_access_assignments

Create accessAssignments\n\nOfficial Microsoft Graph v1.0 endpoint: POST /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments.

Write write
Parameters
delegated_admin_relationship_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_create_access_assignments '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_create_access_assignments '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_access_assignments_get_count_8cbf

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/$count.

Read read
Parameters
delegated_admin_relationship_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_access_assignments_get_count_8cbf '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_access_assignments_get_count_8cbf '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_delete_access_assignments

Delete delegatedAdminAccessAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/{delegatedAdminAccessAssignment-id}.

Write write
Parameters
delegated_admin_relationship_id, delegated_admin_access_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_delete_access_assignments '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","delegated_admin_access_assignment_id":"example_delegated_admin_access_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_delete_access_assignments '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","delegated_admin_access_assignment_id":"example_delegated_admin_access_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_access_assignments

Get delegatedAdminAccessAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/{delegatedAdminAccessAssignment-id}.

Read read
Parameters
delegated_admin_relationship_id, delegated_admin_access_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_access_assignments '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","delegated_admin_access_assignment_id":"example_delegated_admin_access_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_access_assignments '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","delegated_admin_access_assignment_id":"example_delegated_admin_access_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_update_access_assignments

Update delegatedAdminAccessAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/{delegatedAdminAccessAssignment-id}.

Write write
Parameters
delegated_admin_relationship_id, delegated_admin_access_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_update_access_assignments '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","delegated_admin_access_assignment_id":"example_delegated_admin_access_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_update_access_assignments '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","delegated_admin_access_assignment_id":"example_delegated_admin_access_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_list_operations

List operations\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations.

Read read
Parameters
delegated_admin_relationship_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_list_operations '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_list_operations '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_create_operations

Create new navigation property to operations for tenantRelationships\n\nOfficial Microsoft Graph v1.0 endpoint: POST /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations.

Write write
Parameters
delegated_admin_relationship_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_create_operations '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_create_operations '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_operations_get_count_3beb

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/$count.

Read read
Parameters
delegated_admin_relationship_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_operations_get_count_3beb '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_operations_get_count_3beb '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_delete_operations

Delete navigation property operations for tenantRelationships\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/{delegatedAdminRelationshipOperation-id}.

Write write
Parameters
delegated_admin_relationship_id, delegated_admin_relationship_operation_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_delete_operations '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","delegated_admin_relationship_operation_id":"example_delegated_admin_relationship_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_delete_operations '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","delegated_admin_relationship_operation_id":"example_delegated_admin_relationship_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_operations

Get delegatedAdminRelationshipOperation\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/{delegatedAdminRelationshipOperation-id}.

Read read
Parameters
delegated_admin_relationship_id, delegated_admin_relationship_operation_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_operations '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","delegated_admin_relationship_operation_id":"example_delegated_admin_relationship_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_operations '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","delegated_admin_relationship_operation_id":"example_delegated_admin_relationship_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_update_operations

Update the navigation property operations in tenantRelationships\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/{delegatedAdminRelationshipOperation-id}.

Write write
Parameters
delegated_admin_relationship_id, delegated_admin_relationship_operation_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_update_operations '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","delegated_admin_relationship_operation_id":"example_delegated_admin_relationship_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_update_operations '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","delegated_admin_relationship_operation_id":"example_delegated_admin_relationship_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_list_requests

List requests\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests.

Read read
Parameters
delegated_admin_relationship_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_list_requests '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_list_requests '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_create_requests

Create requests\n\nOfficial Microsoft Graph v1.0 endpoint: POST /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests.

Write write
Parameters
delegated_admin_relationship_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_create_requests '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_create_requests '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_requests_get_count_f3a6

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/$count.

Read read
Parameters
delegated_admin_relationship_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_requests_get_count_f3a6 '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_requests_get_count_f3a6 '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_delete_requests

Delete navigation property requests for tenantRelationships\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/{delegatedAdminRelationshipRequest-id}.

Write write
Parameters
delegated_admin_relationship_id, delegated_admin_relationship_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_delete_requests '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","delegated_admin_relationship_request_id":"example_delegated_admin_relationship_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_delete_requests '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","delegated_admin_relationship_request_id":"example_delegated_admin_relationship_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_requests

Get delegatedAdminRelationshipRequest\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/{delegatedAdminRelationshipRequest-id}.

Read read
Parameters
delegated_admin_relationship_id, delegated_admin_relationship_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_requests '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","delegated_admin_relationship_request_id":"example_delegated_admin_relationship_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_requests '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","delegated_admin_relationship_request_id":"example_delegated_admin_relationship_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_update_requests

Update the navigation property requests in tenantRelationships\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/{delegatedAdminRelationshipRequest-id}.

Write write
Parameters
delegated_admin_relationship_id, delegated_admin_relationship_request_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_update_requests '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","delegated_admin_relationship_request_id":"example_delegated_admin_relationship_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_delegated_admin_relationships_update_requests '{"delegated_admin_relationship_id":"example_delegated_admin_relationship_id","delegated_admin_relationship_request_id":"example_delegated_admin_relationship_request_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_find_tenant_information_by_domain_name

Invoke function findTenantInformationByDomainName\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/findTenantInformationByDomainName(domainName='{domainName}').

Read read
Parameters
domain_name, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_find_tenant_information_by_domain_name '{"domain_name":"example_domain_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_find_tenant_information_by_domain_name '{"domain_name":"example_domain_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_find_tenant_information_by_tenant_id

Invoke function findTenantInformationByTenantId\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/findTenantInformationByTenantId(tenantId='{tenantId}').

Read read
Parameters
tenant_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_find_tenant_information_by_tenant_id '{"tenant_id":"example_tenant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_find_tenant_information_by_tenant_id '{"tenant_id":"example_tenant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_get_multi_tenant_organization

Get multiTenantOrganization\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/multiTenantOrganization.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_get_multi_tenant_organization '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_get_multi_tenant_organization '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_update_multi_tenant_organization

Update multiTenantOrganization\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /tenantRelationships/multiTenantOrganization.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_update_multi_tenant_organization '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_update_multi_tenant_organization '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_get_join_request

Get multiTenantOrganizationJoinRequestRecord\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/multiTenantOrganization/joinRequest.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_get_join_request '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_multi_tenant_organization_get_join_request '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_update_join_request

Update multiTenantOrganizationJoinRequestRecord\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /tenantRelationships/multiTenantOrganization/joinRequest.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_update_join_request '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_multi_tenant_organization_update_join_request '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_list_tenants

List multiTenantOrganizationMembers\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/multiTenantOrganization/tenants.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_list_tenants '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_multi_tenant_organization_list_tenants '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_create_tenants

Add multiTenantOrganizationMember\n\nOfficial Microsoft Graph v1.0 endpoint: POST /tenantRelationships/multiTenantOrganization/tenants.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_create_tenants '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_multi_tenant_organization_create_tenants '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_tenants_get_count_3393

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/multiTenantOrganization/tenants/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_tenants_get_count_3393 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_multi_tenant_organization_tenants_get_count_3393 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_delete_tenants

Remove multiTenantOrganizationMember\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /tenantRelationships/multiTenantOrganization/tenants/{multiTenantOrganizationMember-id}.

Write write
Parameters
multi_tenant_organization_member_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_delete_tenants '{"multi_tenant_organization_member_id":"example_multi_tenant_organization_member_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_multi_tenant_organization_delete_tenants '{"multi_tenant_organization_member_id":"example_multi_tenant_organization_member_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_get_tenants

Get multiTenantOrganizationMember\n\nOfficial Microsoft Graph v1.0 endpoint: GET /tenantRelationships/multiTenantOrganization/tenants/{multiTenantOrganizationMember-id}.

Read read
Parameters
multi_tenant_organization_member_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_get_tenants '{"multi_tenant_organization_member_id":"example_multi_tenant_organization_member_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_multi_tenant_organization_get_tenants '{"multi_tenant_organization_member_id":"example_multi_tenant_organization_member_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_update_tenants

Update multiTenantOrganizationMember\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /tenantRelationships/multiTenantOrganization/tenants/{multiTenantOrganizationMember-id}.

Write write
Parameters
multi_tenant_organization_member_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_update_tenants '{"multi_tenant_organization_member_id":"example_multi_tenant_organization_member_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_tenant_relationships_multi_tenant_organization_update_tenants '{"multi_tenant_organization_member_id":"example_multi_tenant_organization_member_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_list_user

List users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_list_user '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_list_user '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_users_user_create_user

Create User\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users.

Write write
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_create_user '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_create_user '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_users_user_delete_user_by_user_principal_name

Delete a user\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users(userPrincipalName='{userPrincipalName}').

Write write
Parameters
user_principal_name, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_delete_user_by_user_principal_name '{"user_principal_name":"example_user_principal_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_delete_user_by_user_principal_name '{"user_principal_name":"example_user_principal_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_get_user_by_user_principal_name

Get a user\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users(userPrincipalName='{userPrincipalName}').

Read read
Parameters
user_principal_name, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_get_user_by_user_principal_name '{"user_principal_name":"example_user_principal_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_get_user_by_user_principal_name '{"user_principal_name":"example_user_principal_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_update_user_by_user_principal_name

Update user\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users(userPrincipalName='{userPrincipalName}').

Write write
Parameters
user_principal_name, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_update_user_by_user_principal_name '{"user_principal_name":"example_user_principal_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_update_user_by_user_principal_name '{"user_principal_name":"example_user_principal_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_count_ee47

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/$count.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_count_ee47 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_count_ee47 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_users_delta

Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/delta().

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_users_get_available_extension_properties

Invoke action getAvailableExtensionProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/getAvailableExtensionProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_available_extension_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_users_get_by_ids

Invoke action getByIds\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/getByIds.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_by_ids '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_users_validate_properties

Invoke action validateProperties\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/validateProperties.

Read read
Parameters
top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_validate_properties '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json

microsoft-entra-id.microsoft_entra_id_users_user_delete_user

Delete a user\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_delete_user '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_delete_user '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_get_user

Get a user\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_get_user '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_get_user '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_update_user

Update user\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users/{user-id}.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_update_user '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_update_user '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_activities

Get activities from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/activities.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_activities '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_activities '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_create_activities

Create new navigation property to activities for users\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/activities.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_create_activities '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_create_activities '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_activities_get_count_39cc

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/activities/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_activities_get_count_39cc '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_activities_get_count_39cc '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_activities_recent

Invoke function recent\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/activities/recent().

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_activities_recent '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_activities_recent '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_delete_activities

Delete navigation property activities for users\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/activities/{userActivity-id}.

Write write
Parameters
user_id, user_activity_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_delete_activities '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_delete_activities '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_activities

Get activities from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/activities/{userActivity-id}.

Read read
Parameters
user_id, user_activity_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_activities '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_activities '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_update_activities

Update the navigation property activities in users\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users/{user-id}/activities/{userActivity-id}.

Write write
Parameters
user_id, user_activity_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_update_activities '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_update_activities '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_activities_list_history_items

Get historyItems from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/activities/{userActivity-id}/historyItems.

Read read
Parameters
user_id, user_activity_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_activities_list_history_items '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_activities_list_history_items '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_activities_create_history_items

Create new navigation property to historyItems for users\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/activities/{userActivity-id}/historyItems.

Write write
Parameters
user_id, user_activity_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_activities_create_history_items '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_activities_create_history_items '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_activities_history_items_get_count_625e

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/activities/{userActivity-id}/historyItems/$count.

Read read
Parameters
user_id, user_activity_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_activities_history_items_get_count_625e '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_activities_history_items_get_count_625e '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_activities_delete_history_items

Delete navigation property historyItems for users\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}.

Write write
Parameters
user_id, user_activity_id, activity_history_item_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_activities_delete_history_items '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","activity_history_item_id":"example_activity_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_activities_delete_history_items '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","activity_history_item_id":"example_activity_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_users_activities_get_history_items

Get historyItems from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}.

Read read
Parameters
user_id, user_activity_id, activity_history_item_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_activities_get_history_items '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","activity_history_item_id":"example_activity_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_activities_get_history_items '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","activity_history_item_id":"example_activity_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_users_activities_update_history_items

Update the navigation property historyItems in users\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}.

Write write
Parameters
user_id, user_activity_id, activity_history_item_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_activities_update_history_items '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","activity_history_item_id":"example_activity_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_activities_update_history_items '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","activity_history_item_id":"example_activity_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_users_activities_history_items_get_activity

Get activity from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity.

Read read
Parameters
user_id, user_activity_id, activity_history_item_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_activities_history_items_get_activity '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","activity_history_item_id":"example_activity_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_activities_history_items_get_activity '{"user_id":"example_user_id","user_activity_id":"example_user_activity_id","activity_history_item_id":"example_activity_history_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_agreement_acceptances

Get agreementAcceptances from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/agreementAcceptances.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_agreement_acceptances '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_agreement_acceptances '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_agreement_acceptances_get_count_b659

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/agreementAcceptances/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_agreement_acceptances_get_count_b659 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_agreement_acceptances_get_count_b659 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_agreement_acceptances

Get agreementAcceptances from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/agreementAcceptances/{agreementAcceptance-id}.

Read read
Parameters
user_id, agreement_acceptance_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_agreement_acceptances '{"user_id":"example_user_id","agreement_acceptance_id":"example_agreement_acceptance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_agreement_acceptances '{"user_id":"example_user_id","agreement_acceptance_id":"example_agreement_acceptance_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_app_role_assignments

List appRoleAssignments (for agentUser)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/appRoleAssignments.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_app_role_assignments '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_app_role_assignments '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_create_app_role_assignments

Create appRoleAssignment (for agentUser)\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/appRoleAssignments.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_create_app_role_assignments '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_create_app_role_assignments '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_app_role_assignments_get_count_d180

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/appRoleAssignments/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_app_role_assignments_get_count_d180 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_app_role_assignments_get_count_d180 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_delete_app_role_assignments

Delete appRoleAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/appRoleAssignments/{appRoleAssignment-id}.

Write write
Parameters
user_id, app_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_delete_app_role_assignments '{"user_id":"example_user_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_delete_app_role_assignments '{"user_id":"example_user_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_app_role_assignments

Get appRoleAssignments from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/appRoleAssignments/{appRoleAssignment-id}.

Read read
Parameters
user_id, app_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_app_role_assignments '{"user_id":"example_user_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_app_role_assignments '{"user_id":"example_user_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_update_app_role_assignments

Update the navigation property appRoleAssignments in users\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users/{user-id}/appRoleAssignments/{appRoleAssignment-id}.

Write write
Parameters
user_id, app_role_assignment_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_update_app_role_assignments '{"user_id":"example_user_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_update_app_role_assignments '{"user_id":"example_user_id","app_role_assignment_id":"example_app_role_assignment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_assign_license

Invoke action assignLicense\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/assignLicense.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_assign_license '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_assign_license '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_delete_authentication

Delete navigation property authentication for users\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/authentication.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_delete_authentication '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_delete_authentication '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_authentication

Get authentication from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_authentication '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_authentication '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_update_authentication

Update the navigation property authentication in users\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users/{user-id}/authentication.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_update_authentication '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_update_authentication '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_list_email_methods

Get emailMethods from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/emailMethods.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_list_email_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_list_email_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_create_email_methods

Create emailMethod\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/authentication/emailMethods.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_create_email_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_create_email_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_email_methods_get_count_6f5c

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/emailMethods/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_email_methods_get_count_6f5c '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_email_methods_get_count_6f5c '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_delete_email_methods

Delete emailAuthenticationMethod\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/authentication/emailMethods/{emailAuthenticationMethod-id}.

Write write
Parameters
user_id, email_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_delete_email_methods '{"user_id":"example_user_id","email_authentication_method_id":"example_email_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_delete_email_methods '{"user_id":"example_user_id","email_authentication_method_id":"example_email_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_get_email_methods

Get emailMethods from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/emailMethods/{emailAuthenticationMethod-id}.

Read read
Parameters
user_id, email_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_get_email_methods '{"user_id":"example_user_id","email_authentication_method_id":"example_email_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_get_email_methods '{"user_id":"example_user_id","email_authentication_method_id":"example_email_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_update_email_methods

Update emailAuthenticationMethod\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users/{user-id}/authentication/emailMethods/{emailAuthenticationMethod-id}.

Write write
Parameters
user_id, email_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_update_email_methods '{"user_id":"example_user_id","email_authentication_method_id":"example_email_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_update_email_methods '{"user_id":"example_user_id","email_authentication_method_id":"example_email_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_list_external_authentication_methods

Get externalAuthenticationMethods from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/externalAuthenticationMethods.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_list_external_authentication_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_list_external_authentication_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_create_external_authentication_methods

Create externalAuthenticationMethod\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/authentication/externalAuthenticationMethods.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_create_external_authentication_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_create_external_authentication_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_external_authentication_methods_get_count_d9e5

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/externalAuthenticationMethods/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_external_authentication_methods_get_count_d9e5 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_external_authentication_methods_get_count_d9e5 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_delete_external_authentication_methods

Delete externalAuthenticationMethod\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/authentication/externalAuthenticationMethods/{externalAuthenticationMethod-id}.

Write write
Parameters
user_id, external_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_delete_external_authentication_methods '{"user_id":"example_user_id","external_authentication_method_id":"example_external_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_delete_external_authentication_methods '{"user_id":"example_user_id","external_authentication_method_id":"example_external_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_get_external_authentication_methods

Get externalAuthenticationMethods from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/externalAuthenticationMethods/{externalAuthenticationMethod-id}.

Read read
Parameters
user_id, external_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_get_external_authentication_methods '{"user_id":"example_user_id","external_authentication_method_id":"example_external_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_get_external_authentication_methods '{"user_id":"example_user_id","external_authentication_method_id":"example_external_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_update_external_authentication_methods

Update the navigation property externalAuthenticationMethods in users\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users/{user-id}/authentication/externalAuthenticationMethods/{externalAuthenticationMethod-id}.

Write write
Parameters
user_id, external_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_update_external_authentication_methods '{"user_id":"example_user_id","external_authentication_method_id":"example_external_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_update_external_authentication_methods '{"user_id":"example_user_id","external_authentication_method_id":"example_external_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_list_fido2_methods

Get fido2Methods from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/fido2Methods.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_list_fido2_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_list_fido2_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_fido2_methods_get_count_9673

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/fido2Methods/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_fido2_methods_get_count_9673 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_fido2_methods_get_count_9673 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_authentication_fido2_methods_creation_options

Invoke function creationOptions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/fido2Methods/creationOptions().

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_authentication_fido2_methods_creation_options '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_authentication_fido2_methods_creation_options '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_delete_fido2_methods

Delete fido2AuthenticationMethod\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}.

Write write
Parameters
user_id, fido2_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_delete_fido2_methods '{"user_id":"example_user_id","fido2_authentication_method_id":"example_fido2_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_delete_fido2_methods '{"user_id":"example_user_id","fido2_authentication_method_id":"example_fido2_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_get_fido2_methods

Get fido2Methods from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}.

Read read
Parameters
user_id, fido2_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_get_fido2_methods '{"user_id":"example_user_id","fido2_authentication_method_id":"example_fido2_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_get_fido2_methods '{"user_id":"example_user_id","fido2_authentication_method_id":"example_fido2_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_list_methods

Get methods from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/methods.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_list_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_list_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_create_methods

Create new navigation property to methods for users\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/authentication/methods.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_create_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_create_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_methods_get_count_0da1

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/methods/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_methods_get_count_0da1 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_methods_get_count_0da1 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_get_methods

Get methods from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/methods/{authenticationMethod-id}.

Read read
Parameters
user_id, authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_get_methods '{"user_id":"example_user_id","authentication_method_id":"example_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_get_methods '{"user_id":"example_user_id","authentication_method_id":"example_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_update_methods

Update the navigation property methods in users\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users/{user-id}/authentication/methods/{authenticationMethod-id}.

Write write
Parameters
user_id, authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_update_methods '{"user_id":"example_user_id","authentication_method_id":"example_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_update_methods '{"user_id":"example_user_id","authentication_method_id":"example_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_authentication_methods_authentication_method_reset_password

Invoke action resetPassword\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/authentication/methods/{authenticationMethod-id}/resetPassword.

Read read
Parameters
user_id, authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_authentication_methods_authentication_method_reset_password '{"user_id":"example_user_id","authentication_method_id":"example_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_authentication_methods_authentication_method_reset_password '{"user_id":"example_user_id","authentication_method_id":"example_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_list_microsoft_authenticator_methods

List microsoftAuthenticatorAuthenticationMethods\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/microsoftAuthenticatorMethods.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_list_microsoft_authenticator_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_list_microsoft_authenticator_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_microsoft_authenticator_methods_get_count_af8c

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/microsoftAuthenticatorMethods/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_microsoft_authenticator_methods_get_count_af8c '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_microsoft_authenticator_methods_get_count_af8c '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_delete_microsoft_authenticator_methods

Delete microsoftAuthenticatorAuthenticationMethod\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}.

Write write
Parameters
user_id, microsoft_authenticator_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_delete_microsoft_authenticator_methods '{"user_id":"example_user_id","microsoft_authenticator_authentication_method_id":"example_microsoft_authenticator_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_delete_microsoft_authenticator_methods '{"user_id":"example_user_id","microsoft_authenticator_authentication_method_id":"example_microsoft_authenticator_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_get_microsoft_authenticator_methods

Get microsoftAuthenticatorAuthenticationMethod\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}.

Read read
Parameters
user_id, microsoft_authenticator_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_get_microsoft_authenticator_methods '{"user_id":"example_user_id","microsoft_authenticator_authentication_method_id":"example_microsoft_authenticator_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_get_microsoft_authenticator_methods '{"user_id":"example_user_id","microsoft_authenticator_authentication_method_id":"example_microsoft_authenticator_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_microsoft_authenticator_methods_get_device

Get device from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}/device.

Read read
Parameters
user_id, microsoft_authenticator_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_microsoft_authenticator_methods_get_device '{"user_id":"example_user_id","microsoft_authenticator_authentication_method_id":"example_microsoft_authenticator_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_microsoft_authenticator_methods_get_device '{"user_id":"example_user_id","microsoft_authenticator_authentication_method_id":"example_microsoft_authenticator_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_list_operations

Get longRunningOperation\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/operations.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_list_operations '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_list_operations '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_create_operations

Create new navigation property to operations for users\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/authentication/operations.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_create_operations '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_create_operations '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_operations_get_count_40a4

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/operations/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_operations_get_count_40a4 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_operations_get_count_40a4 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_delete_operations

Delete navigation property operations for users\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/authentication/operations/{longRunningOperation-id}.

Write write
Parameters
user_id, long_running_operation_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_delete_operations '{"user_id":"example_user_id","long_running_operation_id":"example_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_delete_operations '{"user_id":"example_user_id","long_running_operation_id":"example_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_get_operations

Get longRunningOperation\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/operations/{longRunningOperation-id}.

Read read
Parameters
user_id, long_running_operation_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_get_operations '{"user_id":"example_user_id","long_running_operation_id":"example_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_get_operations '{"user_id":"example_user_id","long_running_operation_id":"example_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_update_operations

Update the navigation property operations in users\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users/{user-id}/authentication/operations/{longRunningOperation-id}.

Write write
Parameters
user_id, long_running_operation_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_update_operations '{"user_id":"example_user_id","long_running_operation_id":"example_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_update_operations '{"user_id":"example_user_id","long_running_operation_id":"example_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_list_password_methods

Get passwordMethods from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/passwordMethods.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_list_password_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_list_password_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_create_password_methods

Create new navigation property to passwordMethods for users\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/authentication/passwordMethods.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_create_password_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_create_password_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_password_methods_get_count_ec55

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/passwordMethods/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_password_methods_get_count_ec55 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_password_methods_get_count_ec55 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_get_password_methods

Get passwordMethods from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/passwordMethods/{passwordAuthenticationMethod-id}.

Read read
Parameters
user_id, password_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_get_password_methods '{"user_id":"example_user_id","password_authentication_method_id":"example_password_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_get_password_methods '{"user_id":"example_user_id","password_authentication_method_id":"example_password_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_list_phone_methods

Get phoneMethods from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/phoneMethods.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_list_phone_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_list_phone_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_create_phone_methods

Create phoneMethod\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/authentication/phoneMethods.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_create_phone_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_create_phone_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_phone_methods_get_count_2ea0

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/phoneMethods/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_phone_methods_get_count_2ea0 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_phone_methods_get_count_2ea0 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_delete_phone_methods

Delete navigation property phoneMethods for users\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}.

Write write
Parameters
user_id, phone_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_delete_phone_methods '{"user_id":"example_user_id","phone_authentication_method_id":"example_phone_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_delete_phone_methods '{"user_id":"example_user_id","phone_authentication_method_id":"example_phone_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_get_phone_methods

Get phoneMethods from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}.

Read read
Parameters
user_id, phone_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_get_phone_methods '{"user_id":"example_user_id","phone_authentication_method_id":"example_phone_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_get_phone_methods '{"user_id":"example_user_id","phone_authentication_method_id":"example_phone_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_update_phone_methods

Update phoneAuthenticationMethod\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}.

Write write
Parameters
user_id, phone_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_update_phone_methods '{"user_id":"example_user_id","phone_authentication_method_id":"example_phone_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_update_phone_methods '{"user_id":"example_user_id","phone_authentication_method_id":"example_phone_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_authentication_phone_methods_phone_authentication_method_disable_sms_sign_in

Invoke action disableSmsSignIn\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}/disableSmsSignIn.

Write write
Parameters
user_id, phone_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_authentication_phone_methods_phone_authentication_method_disable_sms_sign_in '{"user_id":"example_user_id","phone_authentication_method_id":"example_phone_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_authentication_phone_methods_phone_authentication_method_disable_sms_sign_in '{"user_id":"example_user_id","phone_authentication_method_id":"example_phone_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_authentication_phone_methods_phone_authentication_method_enable_sms_sign_in

Invoke action enableSmsSignIn\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}/enableSmsSignIn.

Write write
Parameters
user_id, phone_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_authentication_phone_methods_phone_authentication_method_enable_sms_sign_in '{"user_id":"example_user_id","phone_authentication_method_id":"example_phone_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_authentication_phone_methods_phone_authentication_method_enable_sms_sign_in '{"user_id":"example_user_id","phone_authentication_method_id":"example_phone_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_list_platform_credential_methods

Get platformCredentialMethods from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/platformCredentialMethods.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_list_platform_credential_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_list_platform_credential_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_platform_credential_methods_get_count_66e6

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/platformCredentialMethods/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_platform_credential_methods_get_count_66e6 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_platform_credential_methods_get_count_66e6 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_delete_platform_credential_methods

Delete platformCredentialAuthenticationMethod\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/authentication/platformCredentialMethods/{platformCredentialAuthenticationMethod-id}.

Write write
Parameters
user_id, platform_credential_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_delete_platform_credential_methods '{"user_id":"example_user_id","platform_credential_authentication_method_id":"example_platform_credential_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_delete_platform_credential_methods '{"user_id":"example_user_id","platform_credential_authentication_method_id":"example_platform_credential_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_get_platform_credential_methods

Get platformCredentialMethods from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/platformCredentialMethods/{platformCredentialAuthenticationMethod-id}.

Read read
Parameters
user_id, platform_credential_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_get_platform_credential_methods '{"user_id":"example_user_id","platform_credential_authentication_method_id":"example_platform_credential_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_get_platform_credential_methods '{"user_id":"example_user_id","platform_credential_authentication_method_id":"example_platform_credential_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_platform_credential_methods_get_device

Get device from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/platformCredentialMethods/{platformCredentialAuthenticationMethod-id}/device.

Read read
Parameters
user_id, platform_credential_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_platform_credential_methods_get_device '{"user_id":"example_user_id","platform_credential_authentication_method_id":"example_platform_credential_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_platform_credential_methods_get_device '{"user_id":"example_user_id","platform_credential_authentication_method_id":"example_platform_credential_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_list_software_oath_methods

Get softwareOathMethods from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/softwareOathMethods.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_list_software_oath_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_list_software_oath_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_software_oath_methods_get_count_0ccd

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/softwareOathMethods/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_software_oath_methods_get_count_0ccd '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_software_oath_methods_get_count_0ccd '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_delete_software_oath_methods

Delete softwareOathAuthenticationMethod\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/authentication/softwareOathMethods/{softwareOathAuthenticationMethod-id}.

Write write
Parameters
user_id, software_oath_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_delete_software_oath_methods '{"user_id":"example_user_id","software_oath_authentication_method_id":"example_software_oath_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_delete_software_oath_methods '{"user_id":"example_user_id","software_oath_authentication_method_id":"example_software_oath_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_get_software_oath_methods

Get softwareOathMethods from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/softwareOathMethods/{softwareOathAuthenticationMethod-id}.

Read read
Parameters
user_id, software_oath_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_get_software_oath_methods '{"user_id":"example_user_id","software_oath_authentication_method_id":"example_software_oath_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_get_software_oath_methods '{"user_id":"example_user_id","software_oath_authentication_method_id":"example_software_oath_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_list_temporary_access_pass_methods

List temporaryAccessPassMethods\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/temporaryAccessPassMethods.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_list_temporary_access_pass_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_list_temporary_access_pass_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_create_temporary_access_pass_methods

Create temporaryAccessPassMethod\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/authentication/temporaryAccessPassMethods.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_create_temporary_access_pass_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_create_temporary_access_pass_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_temporary_access_pass_methods_get_count_3b4c

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/temporaryAccessPassMethods/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_temporary_access_pass_methods_get_count_3b4c '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_temporary_access_pass_methods_get_count_3b4c '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_delete_temporary_access_pass_methods

Delete temporaryAccessPassAuthenticationMethod\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/authentication/temporaryAccessPassMethods/{temporaryAccessPassAuthenticationMethod-id}.

Write write
Parameters
user_id, temporary_access_pass_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_delete_temporary_access_pass_methods '{"user_id":"example_user_id","temporary_access_pass_authentication_method_id":"example_temporary_access_pass_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_delete_temporary_access_pass_methods '{"user_id":"example_user_id","temporary_access_pass_authentication_method_id":"example_temporary_access_pass_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_get_temporary_access_pass_methods

Get temporaryAccessPassAuthenticationMethod\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/temporaryAccessPassMethods/{temporaryAccessPassAuthenticationMethod-id}.

Read read
Parameters
user_id, temporary_access_pass_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_get_temporary_access_pass_methods '{"user_id":"example_user_id","temporary_access_pass_authentication_method_id":"example_temporary_access_pass_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_get_temporary_access_pass_methods '{"user_id":"example_user_id","temporary_access_pass_authentication_method_id":"example_temporary_access_pass_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_list_windows_hello_for_business_methods

List windowsHelloForBusinessAuthenticationMethods\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/windowsHelloForBusinessMethods.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_list_windows_hello_for_business_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_list_windows_hello_for_business_methods '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_windows_hello_for_business_methods_get_count_0479

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/windowsHelloForBusinessMethods/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_windows_hello_for_business_methods_get_count_0479 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_windows_hello_for_business_methods_get_count_0479 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_delete_windows_hello_for_business_methods

Delete windowsHelloForBusinessAuthenticationMethod\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}.

Write write
Parameters
user_id, windows_hello_for_business_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_delete_windows_hello_for_business_methods '{"user_id":"example_user_id","windows_hello_for_business_authentication_method_id":"example_windows_hello_for_business_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_delete_windows_hello_for_business_methods '{"user_id":"example_user_id","windows_hello_for_business_authentication_method_id":"example_windows_hello_for_business_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_get_windows_hello_for_business_methods

Get windowsHelloForBusinessAuthenticationMethod\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}.

Read read
Parameters
user_id, windows_hello_for_business_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_get_windows_hello_for_business_methods '{"user_id":"example_user_id","windows_hello_for_business_authentication_method_id":"example_windows_hello_for_business_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_get_windows_hello_for_business_methods '{"user_id":"example_user_id","windows_hello_for_business_authentication_method_id":"example_windows_hello_for_business_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_authentication_windows_hello_for_business_methods_get_device

Get device from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}/device.

Read read
Parameters
user_id, windows_hello_for_business_authentication_method_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_authentication_windows_hello_for_business_methods_get_device '{"user_id":"example_user_id","windows_hello_for_business_authentication_method_id":"example_windows_hello_for_business_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_authentication_windows_hello_for_business_methods_get_device '{"user_id":"example_user_id","windows_hello_for_business_authentication_method_id":"example_windows_hello_for_business_authentication_method_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_change_password

Invoke action changePassword\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/changePassword.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_change_password '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_change_password '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_check_member_groups

Invoke action checkMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/checkMemberGroups.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_check_member_groups '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_check_member_groups '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_check_member_objects

Invoke action checkMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/checkMemberObjects.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_check_member_objects '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_check_member_objects '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_created_objects

Get createdObjects from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/createdObjects.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_created_objects '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_created_objects '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_created_objects_get_count_c0ed

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/createdObjects/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_created_objects_get_count_c0ed '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_created_objects_get_count_c0ed '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_created_objects_as_service_principal

Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/createdObjects/graph.servicePrincipal.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_created_objects_as_service_principal '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_created_objects_as_service_principal '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_created_objects_get_count_as_service_principal_1751

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/createdObjects/graph.servicePrincipal/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_created_objects_get_count_as_service_principal_1751 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_created_objects_get_count_as_service_principal_1751 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_created_objects

Get createdObjects from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/createdObjects/{directoryObject-id}.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_created_objects '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_created_objects '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_created_objects_as_service_principal

Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/createdObjects/{directoryObject-id}/graph.servicePrincipal.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_created_objects_as_service_principal '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_created_objects_as_service_principal '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_device_management_troubleshooting_events

Get deviceManagementTroubleshootingEvents from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/deviceManagementTroubleshootingEvents.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_device_management_troubleshooting_events '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_device_management_troubleshooting_events '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_create_device_management_troubleshooting_events

Create new navigation property to deviceManagementTroubleshootingEvents for users\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/deviceManagementTroubleshootingEvents.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_create_device_management_troubleshooting_events '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_create_device_management_troubleshooting_events '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_device_management_troubleshooting_events_get_count_3623

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/deviceManagementTroubleshootingEvents/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_device_management_troubleshooting_events_get_count_3623 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_device_management_troubleshooting_events_get_count_3623 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_delete_device_management_troubleshooting_events

Delete navigation property deviceManagementTroubleshootingEvents for users\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}.

Write write
Parameters
user_id, device_management_troubleshooting_event_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_delete_device_management_troubleshooting_events '{"user_id":"example_user_id","device_management_troubleshooting_event_id":"example_device_management_troubleshooting_event_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_delete_device_management_troubleshooting_events '{"user_id":"example_user_id","device_management_troubleshooting_event_id":"example_device_management_troubleshooting_event_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_device_management_troubleshooting_events

Get deviceManagementTroubleshootingEvents from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}.

Read read
Parameters
user_id, device_management_troubleshooting_event_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_device_management_troubleshooting_events '{"user_id":"example_user_id","device_management_troubleshooting_event_id":"example_device_management_troubleshooting_event_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_device_management_troubleshooting_events '{"user_id":"example_user_id","device_management_troubleshooting_event_id":"example_device_management_troubleshooting_event_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_update_device_management_troubleshooting_events

Update the navigation property deviceManagementTroubleshootingEvents in users\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}.

Write write
Parameters
user_id, device_management_troubleshooting_event_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_update_device_management_troubleshooting_events '{"user_id":"example_user_id","device_management_troubleshooting_event_id":"example_device_management_troubleshooting_event_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_update_device_management_troubleshooting_events '{"user_id":"example_user_id","device_management_troubleshooting_event_id":"example_device_management_troubleshooting_event_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_direct_reports

List directReports (for agentUser)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/directReports.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_direct_reports '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_direct_reports '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_direct_reports_get_count_0678

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/directReports/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_direct_reports_get_count_0678 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_direct_reports_get_count_0678 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_direct_reports_as_org_contact

Get the items of type microsoft.graph.orgContact in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/directReports/graph.orgContact.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_direct_reports_as_org_contact '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_direct_reports_as_org_contact '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_direct_reports_get_count_as_org_contact_88c4

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/directReports/graph.orgContact/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_direct_reports_get_count_as_org_contact_88c4 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_direct_reports_get_count_as_org_contact_88c4 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_direct_reports_as_user

Get the items of type microsoft.graph.user in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/directReports/graph.user.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_direct_reports_as_user '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_direct_reports_as_user '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_direct_reports_get_count_as_user_c9c7

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/directReports/graph.user/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_direct_reports_get_count_as_user_c9c7 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_direct_reports_get_count_as_user_c9c7 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_direct_reports

Get directReports from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/directReports/{directoryObject-id}.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_direct_reports '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_direct_reports '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_direct_reports_as_org_contact

Get the item of type microsoft.graph.directoryObject as microsoft.graph.orgContact\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/directReports/{directoryObject-id}/graph.orgContact.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_direct_reports_as_org_contact '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_direct_reports_as_org_contact '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_direct_reports_as_user

Get the item of type microsoft.graph.directoryObject as microsoft.graph.user\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/directReports/{directoryObject-id}/graph.user.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_direct_reports_as_user '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_direct_reports_as_user '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_export_personal_data

Invoke action exportPersonalData\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/exportPersonalData.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_export_personal_data '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_export_personal_data '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_extensions

Get extensions from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/extensions.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_extensions '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_extensions '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_create_extensions

Create new navigation property to extensions for users\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/extensions.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_create_extensions '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_create_extensions '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_extensions_get_count_4b1c

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/extensions/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_extensions_get_count_4b1c '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_extensions_get_count_4b1c '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_delete_extensions

Delete navigation property extensions for users\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/extensions/{extension-id}.

Write write
Parameters
user_id, extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_delete_extensions '{"user_id":"example_user_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_delete_extensions '{"user_id":"example_user_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_extensions

Get extensions from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/extensions/{extension-id}.

Read read
Parameters
user_id, extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_extensions '{"user_id":"example_user_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_extensions '{"user_id":"example_user_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_update_extensions

Update the navigation property extensions in users\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users/{user-id}/extensions/{extension-id}.

Write write
Parameters
user_id, extension_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_update_extensions '{"user_id":"example_user_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_update_extensions '{"user_id":"example_user_id","extension_id":"example_extension_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_find_meeting_times

Invoke action findMeetingTimes\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/findMeetingTimes.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_find_meeting_times '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_find_meeting_times '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_get_member_groups

Invoke action getMemberGroups\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/getMemberGroups.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_get_member_groups '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_get_member_groups '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_get_member_objects

Invoke action getMemberObjects\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/getMemberObjects.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_get_member_objects '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_get_member_objects '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_inference_classification

Get inferenceClassification from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/inferenceClassification.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_inference_classification '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_inference_classification '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_update_inference_classification

Update the navigation property inferenceClassification in users\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users/{user-id}/inferenceClassification.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_update_inference_classification '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_update_inference_classification '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_inference_classification_list_overrides

Get overrides from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/inferenceClassification/overrides.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_inference_classification_list_overrides '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_inference_classification_list_overrides '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_inference_classification_create_overrides

Create new navigation property to overrides for users\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/inferenceClassification/overrides.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_inference_classification_create_overrides '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_inference_classification_create_overrides '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_inference_classification_overrides_get_count_f355

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/inferenceClassification/overrides/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_inference_classification_overrides_get_count_f355 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_inference_classification_overrides_get_count_f355 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_inference_classification_delete_overrides

Delete navigation property overrides for users\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}.

Write write
Parameters
user_id, inference_classification_override_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_inference_classification_delete_overrides '{"user_id":"example_user_id","inference_classification_override_id":"example_inference_classification_override_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_inference_classification_delete_overrides '{"user_id":"example_user_id","inference_classification_override_id":"example_inference_classification_override_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_inference_classification_get_overrides

Get overrides from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}.

Read read
Parameters
user_id, inference_classification_override_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_inference_classification_get_overrides '{"user_id":"example_user_id","inference_classification_override_id":"example_inference_classification_override_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_inference_classification_get_overrides '{"user_id":"example_user_id","inference_classification_override_id":"example_inference_classification_override_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_inference_classification_update_overrides

Update the navigation property overrides in users\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}.

Write write
Parameters
user_id, inference_classification_override_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_inference_classification_update_overrides '{"user_id":"example_user_id","inference_classification_override_id":"example_inference_classification_override_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_inference_classification_update_overrides '{"user_id":"example_user_id","inference_classification_override_id":"example_inference_classification_override_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_license_details

Get licenseDetails from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/licenseDetails.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_license_details '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_license_details '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_create_license_details

Create new navigation property to licenseDetails for users\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/licenseDetails.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_create_license_details '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_create_license_details '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_license_details_get_count_a83d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/licenseDetails/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_license_details_get_count_a83d '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_license_details_get_count_a83d '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_license_details_get_teams_licensing_details

Invoke function getTeamsLicensingDetails\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/licenseDetails/getTeamsLicensingDetails().

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_license_details_get_teams_licensing_details '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_license_details_get_teams_licensing_details '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_delete_license_details

Delete navigation property licenseDetails for users\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/licenseDetails/{licenseDetails-id}.

Write write
Parameters
user_id, license_details_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_delete_license_details '{"user_id":"example_user_id","license_details_id":"example_license_details_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_delete_license_details '{"user_id":"example_user_id","license_details_id":"example_license_details_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_license_details

Get licenseDetails from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/licenseDetails/{licenseDetails-id}.

Read read
Parameters
user_id, license_details_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_license_details '{"user_id":"example_user_id","license_details_id":"example_license_details_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_license_details '{"user_id":"example_user_id","license_details_id":"example_license_details_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_update_license_details

Update the navigation property licenseDetails in users\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users/{user-id}/licenseDetails/{licenseDetails-id}.

Write write
Parameters
user_id, license_details_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_update_license_details '{"user_id":"example_user_id","license_details_id":"example_license_details_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_update_license_details '{"user_id":"example_user_id","license_details_id":"example_license_details_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_manager

List manager (for agentUser)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/manager.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_manager '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_manager '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_delete_ref_manager

Remove manager (for agentUser)\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/manager/$ref.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_delete_ref_manager '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_delete_ref_manager '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_ref_manager

List manager (for agentUser)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/manager/$ref.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_ref_manager '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_ref_manager '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_update_ref_manager

Assign manager\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /users/{user-id}/manager/$ref.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_update_ref_manager '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_update_ref_manager '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_member_of

List agentUser direct memberships\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/memberOf.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_member_of '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_member_of '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_member_of_get_count_fc20

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/memberOf/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_member_of_get_count_fc20 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_member_of_get_count_fc20 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_member_of_as_administrative_unit

Get the items of type microsoft.graph.administrativeUnit in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/memberOf/graph.administrativeUnit.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_member_of_as_administrative_unit '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_member_of_as_administrative_unit '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_member_of_get_count_as_administrative_unit_88a9

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/memberOf/graph.administrativeUnit/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_member_of_get_count_as_administrative_unit_88a9 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_member_of_get_count_as_administrative_unit_88a9 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_member_of_as_directory_role

Get the items of type microsoft.graph.directoryRole in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/memberOf/graph.directoryRole.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_member_of_as_directory_role '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_member_of_as_directory_role '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_member_of_get_count_as_directory_role_b036

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/memberOf/graph.directoryRole/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_member_of_get_count_as_directory_role_b036 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_member_of_get_count_as_directory_role_b036 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_member_of_as_group

List a user's direct memberships\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/memberOf/graph.group.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_member_of_as_group '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_member_of_as_group '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_member_of_get_count_as_group_48c0

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/memberOf/graph.group/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_member_of_get_count_as_group_48c0 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_member_of_get_count_as_group_48c0 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_member_of

Get memberOf from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/memberOf/{directoryObject-id}.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_member_of '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_member_of '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_member_of_as_administrative_unit

Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/memberOf/{directoryObject-id}/graph.administrativeUnit.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_member_of_as_administrative_unit '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_member_of_as_administrative_unit '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_member_of_as_directory_role

Get the item of type microsoft.graph.directoryObject as microsoft.graph.directoryRole\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/memberOf/{directoryObject-id}/graph.directoryRole.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_member_of_as_directory_role '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_member_of_as_directory_role '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_member_of_as_group

List a user's direct memberships\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/memberOf/{directoryObject-id}/graph.group.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_member_of_as_group '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_member_of_as_group '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_oauth2_permission_grants

List a user's oauth2PermissionGrants\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/oauth2PermissionGrants.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_oauth2_permission_grants '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_oauth2_permission_grants '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_oauth2_permission_grants_get_count_fb7b

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/oauth2PermissionGrants/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_oauth2_permission_grants_get_count_fb7b '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_oauth2_permission_grants_get_count_fb7b '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_oauth2_permission_grants

Get oauth2PermissionGrants from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/oauth2PermissionGrants/{oAuth2PermissionGrant-id}.

Read read
Parameters
user_id, o_auth2_permission_grant_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_oauth2_permission_grants '{"user_id":"example_user_id","o_auth2_permission_grant_id":"example_o_auth2_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_oauth2_permission_grants '{"user_id":"example_user_id","o_auth2_permission_grant_id":"example_o_auth2_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_delete_on_premises_sync_behavior

Delete navigation property onPremisesSyncBehavior for users\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/onPremisesSyncBehavior.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_delete_on_premises_sync_behavior '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_delete_on_premises_sync_behavior '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_on_premises_sync_behavior

Get onPremisesSyncBehavior from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/onPremisesSyncBehavior.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_on_premises_sync_behavior '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_on_premises_sync_behavior '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_update_on_premises_sync_behavior

Update the navigation property onPremisesSyncBehavior in users\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users/{user-id}/onPremisesSyncBehavior.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_update_on_premises_sync_behavior '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_update_on_premises_sync_behavior '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_owned_devices

Get ownedDevices from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedDevices.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_owned_devices '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_owned_devices '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_owned_devices_get_count_e76d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedDevices/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_owned_devices_get_count_e76d '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_owned_devices_get_count_e76d '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_owned_devices_as_app_role_assignment

Get the items of type microsoft.graph.appRoleAssignment in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedDevices/graph.appRoleAssignment.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_owned_devices_as_app_role_assignment '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_owned_devices_as_app_role_assignment '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_owned_devices_get_count_as_app_role_assignment_59f6

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedDevices/graph.appRoleAssignment/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_owned_devices_get_count_as_app_role_assignment_59f6 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_owned_devices_get_count_as_app_role_assignment_59f6 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_owned_devices_as_device

Get the items of type microsoft.graph.device in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedDevices/graph.device.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_owned_devices_as_device '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_owned_devices_as_device '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_owned_devices_get_count_as_device_64a9

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedDevices/graph.device/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_owned_devices_get_count_as_device_64a9 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_owned_devices_get_count_as_device_64a9 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_owned_devices_as_endpoint

Get the items of type microsoft.graph.endpoint in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedDevices/graph.endpoint.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_owned_devices_as_endpoint '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_owned_devices_as_endpoint '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_owned_devices_get_count_as_endpoint_bd17

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedDevices/graph.endpoint/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_owned_devices_get_count_as_endpoint_bd17 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_owned_devices_get_count_as_endpoint_bd17 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_owned_devices

Get ownedDevices from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedDevices/{directoryObject-id}.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_owned_devices '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_owned_devices '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_owned_devices_as_app_role_assignment

Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedDevices/{directoryObject-id}/graph.appRoleAssignment.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_owned_devices_as_app_role_assignment '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_owned_devices_as_app_role_assignment '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_owned_devices_as_device

Get the item of type microsoft.graph.directoryObject as microsoft.graph.device\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedDevices/{directoryObject-id}/graph.device.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_owned_devices_as_device '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_owned_devices_as_device '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_owned_devices_as_endpoint

Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedDevices/{directoryObject-id}/graph.endpoint.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_owned_devices_as_endpoint '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_owned_devices_as_endpoint '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_owned_objects

List ownedObjects (for agentUser)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedObjects.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_owned_objects '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_owned_objects '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_owned_objects_get_count_2c09

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedObjects/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_owned_objects_get_count_2c09 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_owned_objects_get_count_2c09 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_owned_objects_as_application

Get the items of type microsoft.graph.application in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedObjects/graph.application.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_owned_objects_as_application '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_owned_objects_as_application '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_owned_objects_get_count_as_application_1b6d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedObjects/graph.application/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_owned_objects_get_count_as_application_1b6d '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_owned_objects_get_count_as_application_1b6d '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_owned_objects_as_group

Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedObjects/graph.group.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_owned_objects_as_group '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_owned_objects_as_group '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_owned_objects_get_count_as_group_7af3

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedObjects/graph.group/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_owned_objects_get_count_as_group_7af3 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_owned_objects_get_count_as_group_7af3 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_owned_objects_as_service_principal

Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedObjects/graph.servicePrincipal.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_owned_objects_as_service_principal '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_owned_objects_as_service_principal '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_owned_objects_get_count_as_service_principal_370f

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedObjects/graph.servicePrincipal/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_owned_objects_get_count_as_service_principal_370f '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_owned_objects_get_count_as_service_principal_370f '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_owned_objects

Get ownedObjects from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedObjects/{directoryObject-id}.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_owned_objects '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_owned_objects '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_owned_objects_as_application

Get the item of type microsoft.graph.directoryObject as microsoft.graph.application\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedObjects/{directoryObject-id}/graph.application.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_owned_objects_as_application '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_owned_objects_as_application '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_owned_objects_as_group

Get the item of type microsoft.graph.directoryObject as microsoft.graph.group\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedObjects/{directoryObject-id}/graph.group.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_owned_objects_as_group '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_owned_objects_as_group '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_owned_objects_as_service_principal

Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/ownedObjects/{directoryObject-id}/graph.servicePrincipal.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_owned_objects_as_service_principal '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_owned_objects_as_service_principal '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_people

Get people from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/people.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_people '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_people '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_people_get_count_d516

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/people/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_people_get_count_d516 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_people_get_count_d516 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_people

Get people from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/people/{person-id}.

Read read
Parameters
user_id, person_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_people '{"user_id":"example_user_id","person_id":"example_person_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_people '{"user_id":"example_user_id","person_id":"example_person_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_permission_grants

List permissionGrants of a user\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/permissionGrants.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_permission_grants '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_permission_grants '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_create_permission_grants

Create new navigation property to permissionGrants for users\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/permissionGrants.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_create_permission_grants '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_create_permission_grants '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_permission_grants_get_count_07aa

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/permissionGrants/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_permission_grants_get_count_07aa '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_permission_grants_get_count_07aa '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_delete_permission_grants

Delete navigation property permissionGrants for users\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/permissionGrants/{resourceSpecificPermissionGrant-id}.

Write write
Parameters
user_id, resource_specific_permission_grant_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_delete_permission_grants '{"user_id":"example_user_id","resource_specific_permission_grant_id":"example_resource_specific_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_delete_permission_grants '{"user_id":"example_user_id","resource_specific_permission_grant_id":"example_resource_specific_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_permission_grants

Get permissionGrants from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/permissionGrants/{resourceSpecificPermissionGrant-id}.

Read read
Parameters
user_id, resource_specific_permission_grant_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_permission_grants '{"user_id":"example_user_id","resource_specific_permission_grant_id":"example_resource_specific_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_permission_grants '{"user_id":"example_user_id","resource_specific_permission_grant_id":"example_resource_specific_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_update_permission_grants

Update the navigation property permissionGrants in users\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users/{user-id}/permissionGrants/{resourceSpecificPermissionGrant-id}.

Write write
Parameters
user_id, resource_specific_permission_grant_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_update_permission_grants '{"user_id":"example_user_id","resource_specific_permission_grant_id":"example_resource_specific_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_update_permission_grants '{"user_id":"example_user_id","resource_specific_permission_grant_id":"example_resource_specific_permission_grant_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_registered_devices

Get registeredDevices from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/registeredDevices.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_registered_devices '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_registered_devices '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_registered_devices_get_count_0403

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/registeredDevices/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_registered_devices_get_count_0403 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_registered_devices_get_count_0403 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_registered_devices_as_app_role_assignment

Get the items of type microsoft.graph.appRoleAssignment in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/registeredDevices/graph.appRoleAssignment.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_registered_devices_as_app_role_assignment '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_registered_devices_as_app_role_assignment '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_registered_devices_get_count_as_app_role_assignment_cd2d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/registeredDevices/graph.appRoleAssignment/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_registered_devices_get_count_as_app_role_assignment_cd2d '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_registered_devices_get_count_as_app_role_assignment_cd2d '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_registered_devices_as_device

Get the items of type microsoft.graph.device in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/registeredDevices/graph.device.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_registered_devices_as_device '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_registered_devices_as_device '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_registered_devices_get_count_as_device_16e2

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/registeredDevices/graph.device/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_registered_devices_get_count_as_device_16e2 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_registered_devices_get_count_as_device_16e2 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_registered_devices_as_endpoint

Get the items of type microsoft.graph.endpoint in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/registeredDevices/graph.endpoint.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_registered_devices_as_endpoint '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_registered_devices_as_endpoint '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_registered_devices_get_count_as_endpoint_87c6

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/registeredDevices/graph.endpoint/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_registered_devices_get_count_as_endpoint_87c6 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_registered_devices_get_count_as_endpoint_87c6 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_registered_devices

Get registeredDevices from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/registeredDevices/{directoryObject-id}.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_registered_devices '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_registered_devices '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_registered_devices_as_app_role_assignment

Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/registeredDevices/{directoryObject-id}/graph.appRoleAssignment.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_registered_devices_as_app_role_assignment '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_registered_devices_as_app_role_assignment '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_registered_devices_as_device

Get the item of type microsoft.graph.directoryObject as microsoft.graph.device\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/registeredDevices/{directoryObject-id}/graph.device.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_registered_devices_as_device '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_registered_devices_as_device '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_registered_devices_as_endpoint

Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/registeredDevices/{directoryObject-id}/graph.endpoint.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_registered_devices_as_endpoint '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_registered_devices_as_endpoint '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_remove_all_devices_from_management

Invoke action removeAllDevicesFromManagement\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/removeAllDevicesFromManagement.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_remove_all_devices_from_management '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_remove_all_devices_from_management '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_reprocess_license_assignment

Invoke action reprocessLicenseAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/reprocessLicenseAssignment.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_reprocess_license_assignment '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_reprocess_license_assignment '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_restore

Invoke action restore\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/restore.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_restore '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_restore '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_retry_service_provisioning

Invoke action retryServiceProvisioning\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/retryServiceProvisioning.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_retry_service_provisioning '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_retry_service_provisioning '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_revoke_sign_in_sessions

Invoke action revokeSignInSessions\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/revokeSignInSessions.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_revoke_sign_in_sessions '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_revoke_sign_in_sessions '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_scoped_role_member_of

Get scopedRoleMemberOf from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/scopedRoleMemberOf.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_scoped_role_member_of '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_scoped_role_member_of '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_create_scoped_role_member_of

Create new navigation property to scopedRoleMemberOf for users\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/scopedRoleMemberOf.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_create_scoped_role_member_of '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_create_scoped_role_member_of '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_scoped_role_member_of_get_count_0e30

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/scopedRoleMemberOf/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_scoped_role_member_of_get_count_0e30 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_scoped_role_member_of_get_count_0e30 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_delete_scoped_role_member_of

Delete navigation property scopedRoleMemberOf for users\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}.

Write write
Parameters
user_id, scoped_role_membership_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_delete_scoped_role_member_of '{"user_id":"example_user_id","scoped_role_membership_id":"example_scoped_role_membership_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_delete_scoped_role_member_of '{"user_id":"example_user_id","scoped_role_membership_id":"example_scoped_role_membership_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_scoped_role_member_of

Get scopedRoleMemberOf from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}.

Read read
Parameters
user_id, scoped_role_membership_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_scoped_role_member_of '{"user_id":"example_user_id","scoped_role_membership_id":"example_scoped_role_membership_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_scoped_role_member_of '{"user_id":"example_user_id","scoped_role_membership_id":"example_scoped_role_membership_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_update_scoped_role_member_of

Update the navigation property scopedRoleMemberOf in users\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}.

Write write
Parameters
user_id, scoped_role_membership_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_update_scoped_role_member_of '{"user_id":"example_user_id","scoped_role_membership_id":"example_scoped_role_membership_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_update_scoped_role_member_of '{"user_id":"example_user_id","scoped_role_membership_id":"example_scoped_role_membership_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_service_provisioning_errors

Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/serviceProvisioningErrors.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_service_provisioning_errors '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_service_provisioning_errors '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_service_provisioning_errors_get_count_bccc

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/serviceProvisioningErrors/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_service_provisioning_errors_get_count_bccc '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_service_provisioning_errors_get_count_bccc '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_sponsors

List sponsors (for agentUser)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/sponsors.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_sponsors '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_sponsors '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_sponsors_get_count_f3b9

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/sponsors/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_sponsors_get_count_f3b9 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_sponsors_get_count_f3b9 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_delete_ref_sponsors

Remove sponsor (for agentUser)\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/sponsors/$ref.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_delete_ref_sponsors '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_delete_ref_sponsors '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_ref_sponsors

List sponsors (for agentUser)\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/sponsors/$ref.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_ref_sponsors '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_ref_sponsors '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_create_ref_sponsors

Add sponsors (for agentUser)\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/sponsors/$ref.

Write write
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_create_ref_sponsors '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_create_ref_sponsors '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_sponsors_delete_ref_directory_object

Remove sponsor (for agentUser)\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /users/{user-id}/sponsors/{directoryObject-id}/$ref.

Write write
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_sponsors_delete_ref_directory_object '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_sponsors_delete_ref_directory_object '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_transitive_member_of

List transitiveMemberOf\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/transitiveMemberOf.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_transitive_member_of '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_transitive_member_of '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_transitive_member_of_get_count_b904

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/transitiveMemberOf/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_transitive_member_of_get_count_b904 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_transitive_member_of_get_count_b904 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_transitive_member_of_as_administrative_unit

Get the items of type microsoft.graph.administrativeUnit in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/transitiveMemberOf/graph.administrativeUnit.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_transitive_member_of_as_administrative_unit '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_transitive_member_of_as_administrative_unit '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_transitive_member_of_get_count_as_administrative_unit_9c79

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/transitiveMemberOf/graph.administrativeUnit/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_transitive_member_of_get_count_as_administrative_unit_9c79 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_transitive_member_of_get_count_as_administrative_unit_9c79 '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_transitive_member_of_as_directory_role

Get the items of type microsoft.graph.directoryRole in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/transitiveMemberOf/graph.directoryRole.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_transitive_member_of_as_directory_role '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_transitive_member_of_as_directory_role '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_transitive_member_of_get_count_as_directory_role_462d

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/transitiveMemberOf/graph.directoryRole/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_transitive_member_of_get_count_as_directory_role_462d '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_transitive_member_of_get_count_as_directory_role_462d '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_list_transitive_member_of_as_group

Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/transitiveMemberOf/graph.group.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_list_transitive_member_of_as_group '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_list_transitive_member_of_as_group '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_transitive_member_of_get_count_as_group_062f

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/transitiveMemberOf/graph.group/$count.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_transitive_member_of_get_count_as_group_062f '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_transitive_member_of_get_count_as_group_062f '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_transitive_member_of

Get transitiveMemberOf from users\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/transitiveMemberOf/{directoryObject-id}.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_transitive_member_of '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_transitive_member_of '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_transitive_member_of_as_administrative_unit

Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/transitiveMemberOf/{directoryObject-id}/graph.administrativeUnit.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_transitive_member_of_as_administrative_unit '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_transitive_member_of_as_administrative_unit '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_transitive_member_of_as_directory_role

Get the item of type microsoft.graph.directoryObject as microsoft.graph.directoryRole\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/transitiveMemberOf/{directoryObject-id}/graph.directoryRole.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_transitive_member_of_as_directory_role '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_transitive_member_of_as_directory_role '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_get_transitive_member_of_as_group

Get the item of type microsoft.graph.directoryObject as microsoft.graph.group\n\nOfficial Microsoft Graph v1.0 endpoint: GET /users/{user-id}/transitiveMemberOf/{directoryObject-id}/graph.group.

Read read
Parameters
user_id, directory_object_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_get_transitive_member_of_as_group '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_get_transitive_member_of_as_group '{"user_id":"example_user_id","directory_object_id":"example_directory_object_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_translate_exchange_ids

Invoke action translateExchangeIds\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/translateExchangeIds.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_translate_exchange_ids '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_translate_exchange_ids '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

microsoft-entra-id.microsoft_entra_id_users_user_wipe_managed_app_registrations_by_device_tag

Invoke action wipeManagedAppRegistrationsByDeviceTag\n\nOfficial Microsoft Graph v1.0 endpoint: POST /users/{user-id}/wipeManagedAppRegistrationsByDeviceTag.

Read read
Parameters
user_id, top, skip, search, filter, orderby, select, expand, count, if_match, prefer, consistency_level, body
Generic call
kosmo integrations:call microsoft-entra-id.microsoft_entra_id_users_user_wipe_managed_app_registrations_by_device_tag '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json
Shortcut
kosmo integrations:microsoft-entra-id microsoft_entra_id_users_user_wipe_managed_app_registrations_by_device_tag '{"user_id":"example_user_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

microsoft-entra-id.microsoft_entra_id_applications_application_list_application 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_list_application --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_create_application 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_create_application --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_application_delete_application_by_app_id 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_delete_application_by_app_id --json
ParameterTypeRequiredDescription
app_id string yes Path parameter `appId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_get_application_by_app_id 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_get_application_by_app_id --json
ParameterTypeRequiredDescription
app_id string yes Path parameter `appId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_update_application_by_app_id 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_update_application_by_app_id --json
ParameterTypeRequiredDescription
app_id string yes Path parameter `appId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_application_delete_application_by_unique_name 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_delete_application_by_unique_name --json
ParameterTypeRequiredDescription
unique_name string yes Path parameter `uniqueName`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_get_application_by_unique_name 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_get_application_by_unique_name --json
ParameterTypeRequiredDescription
unique_name string yes Path parameter `uniqueName`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_update_application_by_unique_name 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_update_application_by_unique_name --json
ParameterTypeRequiredDescription
unique_name string yes Path parameter `uniqueName`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_get_count_8398 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_get_count_8398 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_applications_delta 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_delta --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_applications_get_available_extension_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_get_available_extension_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_get_by_ids 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_get_by_ids --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_validate_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_validate_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_application_delete_application 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_delete_application --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_get_application 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_get_application --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_update_application 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_update_application --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_application_add_key 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_add_key --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_application_add_password 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_add_password --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_list_app_management_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_list_app_management_policies --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_app_management_policies_get_count_3aad 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_app_management_policies_get_count_3aad --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_delete_ref_app_management_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_delete_ref_app_management_policies --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_list_ref_app_management_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_list_ref_app_management_policies --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_create_ref_app_management_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_create_ref_app_management_policies --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_app_management_policies_delete_ref_app_management_policy 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_app_management_policies_delete_ref_app_management_policy --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
app_management_policy_id string yes Path parameter `appManagementPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_check_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_check_member_groups --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_application_check_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_check_member_objects --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_get_created_on_behalf_of 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_get_created_on_behalf_of --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_list_extension_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_list_extension_properties --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_create_extension_properties 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_create_extension_properties --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_extension_properties_get_count_3535 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_extension_properties_get_count_3535 --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_delete_extension_properties 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_delete_extension_properties --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
extension_property_id string yes Path parameter `extensionProperty-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_get_extension_properties 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_get_extension_properties --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
extension_property_id string yes Path parameter `extensionProperty-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_update_extension_properties 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_update_extension_properties --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
extension_property_id string yes Path parameter `extensionProperty-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_list_federated_identity_credentials 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_list_federated_identity_credentials --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_create_federated_identity_credentials 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_create_federated_identity_credentials --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_federated_identity_credentials_delete_by_name 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_federated_identity_credentials_delete_by_name --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_applications_federated_identity_credentials_get_by_name 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_federated_identity_credentials_get_by_name --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_applications_federated_identity_credentials_update_by_name 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_federated_identity_credentials_update_by_name --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_federated_identity_credentials_get_count_d653 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_federated_identity_credentials_get_count_d653 --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_delete_federated_identity_credentials 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_delete_federated_identity_credentials --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
federated_identity_credential_id string yes Path parameter `federatedIdentityCredential-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_get_federated_identity_credentials 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_get_federated_identity_credentials --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
federated_identity_credential_id string yes Path parameter `federatedIdentityCredential-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_update_federated_identity_credentials 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_update_federated_identity_credentials --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
federated_identity_credential_id string yes Path parameter `federatedIdentityCredential-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_application_get_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_get_member_groups --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_application_get_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_get_member_objects --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_list_home_realm_discovery_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_list_home_realm_discovery_policies --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_home_realm_discovery_policies_get_count_1662 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_home_realm_discovery_policies_get_count_1662 --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_get_home_realm_discovery_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_get_home_realm_discovery_policies --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
home_realm_discovery_policy_id string yes Path parameter `homeRealmDiscoveryPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_list_owners 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_list_owners --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_2b88 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_2b88 --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_delete_ref_owners 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_delete_ref_owners --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_list_ref_owners 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_list_ref_owners --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_create_ref_owners 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_create_ref_owners --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_list_owners_as_app_role_assignment 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_list_owners_as_app_role_assignment --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_as_app_role_assignment_eb25 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_as_app_role_assignment_eb25 --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_list_owners_as_endpoint 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_list_owners_as_endpoint --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_as_endpoint_0426 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_as_endpoint_0426 --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_list_owners_as_service_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_list_owners_as_service_principal --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_as_service_principal_0959 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_as_service_principal_0959 --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_list_owners_as_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_list_owners_as_user --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_as_user_c674 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_owners_get_count_as_user_c674 --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_owners_delete_ref_directory_object 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_owners_delete_ref_directory_object --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_get_owners_as_app_role_assignment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_get_owners_as_app_role_assignment --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_get_owners_as_endpoint 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_get_owners_as_endpoint --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_get_owners_as_service_principal 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_get_owners_as_service_principal --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_get_owners_as_user 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_get_owners_as_user --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_remove_key 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_remove_key --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_application_remove_password 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_remove_password --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_application_restore 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_restore --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_set_verified_publisher 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_set_verified_publisher --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_delete_synchronization 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_delete_synchronization --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_get_synchronization 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_get_synchronization --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_set_synchronization 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_set_synchronization --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_acquire_access_token 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_acquire_access_token --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_list_jobs 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_list_jobs --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_create_jobs 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_create_jobs --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_get_count_30ed 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_get_count_30ed --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_validate_credentials 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_validate_credentials --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_delete_jobs 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_delete_jobs --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_get_jobs 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_get_jobs --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_update_jobs 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_update_jobs --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_delete_bulk_upload 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_delete_bulk_upload --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_get_bulk_upload 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_get_bulk_upload --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_update_bulk_upload 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_update_bulk_upload --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_delete_bulk_upload_content 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_delete_bulk_upload_content --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_get_bulk_upload_content 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_get_bulk_upload_content --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_update_bulk_upload_content 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_update_bulk_upload_content --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_pause 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_pause --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_provision_on_demand 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_provision_on_demand --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_restart 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_restart --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_delete_schema 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_delete_schema --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_get_schema 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_get_schema --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_update_schema 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_update_schema --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_list_directories 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_list_directories --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_create_directories 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_create_directories --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_directories_get_count_03bf 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_directories_get_count_03bf --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_delete_directories 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_delete_directories --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-id`.
directory_definition_id string yes Path parameter `directoryDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_get_directories 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_get_directories --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-id`.
directory_definition_id string yes Path parameter `directoryDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_update_directories 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_jobs_schema_update_directories --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-id`.
directory_definition_id string yes Path parameter `directoryDefinition-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_directories_directory_definition_discover 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_directories_directory_definition_discover --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-id`.
directory_definition_id string yes Path parameter `directoryDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_filter_operators 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_filter_operators --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_functions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_functions --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_parse_expression 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_schema_parse_expression --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_start 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_start --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_validate_credentials 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_jobs_synchronization_job_validate_credentials --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_set_secrets 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_set_secrets --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_secrets_get_count_26f1 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_secrets_get_count_26f1 --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_list_templates 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_list_templates --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_create_templates 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_create_templates --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_get_count_738a 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_get_count_738a --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_delete_templates 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_delete_templates --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_get_templates 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_get_templates --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_update_templates 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_update_templates --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_delete_schema 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_delete_schema --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_get_schema 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_get_schema --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_update_schema 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_update_schema --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_list_directories 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_list_directories --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_create_directories 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_create_directories --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_directories_get_count_27bc 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_directories_get_count_27bc --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_delete_directories 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_delete_directories --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-id`.
directory_definition_id string yes Path parameter `directoryDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_get_directories 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_get_directories --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-id`.
directory_definition_id string yes Path parameter `directoryDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_update_directories 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_synchronization_templates_schema_update_directories --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-id`.
directory_definition_id string yes Path parameter `directoryDefinition-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_directories_directory_definition_discover 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_directories_directory_definition_discover --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-id`.
directory_definition_id string yes Path parameter `directoryDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_filter_operators 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_filter_operators --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_functions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_functions --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_parse_expression 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_synchronization_templates_synchronization_template_schema_parse_expression --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_list_token_issuance_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_list_token_issuance_policies --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_token_issuance_policies_get_count_4be5 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_token_issuance_policies_get_count_4be5 --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_delete_ref_token_issuance_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_delete_ref_token_issuance_policies --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_list_ref_token_issuance_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_list_ref_token_issuance_policies --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_create_ref_token_issuance_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_create_ref_token_issuance_policies --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_token_issuance_policies_delete_ref_token_issuance_policy 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_token_issuance_policies_delete_ref_token_issuance_policy --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
token_issuance_policy_id string yes Path parameter `tokenIssuancePolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_list_token_lifetime_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_list_token_lifetime_policies --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_token_lifetime_policies_get_count_5de4 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_token_lifetime_policies_get_count_5de4 --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_delete_ref_token_lifetime_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_delete_ref_token_lifetime_policies --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_list_ref_token_lifetime_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_list_ref_token_lifetime_policies --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_create_ref_token_lifetime_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_create_ref_token_lifetime_policies --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_applications_token_lifetime_policies_delete_ref_token_lifetime_policy 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_token_lifetime_policies_delete_ref_token_lifetime_policy --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-id`.
token_lifetime_policy_id string yes Path parameter `tokenLifetimePolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_applications_application_unset_verified_publisher 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_applications_application_unset_verified_publisher --json
ParameterTypeRequiredDescription
application_id string yes Path parameter `application-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 directory queries.
microsoft-entra-id.microsoft_entra_id_contracts_contract_list_contract 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_contracts_contract_list_contract --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_contracts_contract_create_contract 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_contracts_contract_create_contract --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_contracts_get_count_8092 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_contracts_get_count_8092 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_contracts_delta 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_contracts_delta --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_contracts_get_available_extension_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_contracts_get_available_extension_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_contracts_get_by_ids 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_contracts_get_by_ids --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_contracts_validate_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_contracts_validate_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_contracts_contract_delete_contract 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_contracts_contract_delete_contract --json
ParameterTypeRequiredDescription
contract_id string yes Path parameter `contract-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 directory queries.
microsoft-entra-id.microsoft_entra_id_contracts_contract_get_contract 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_contracts_contract_get_contract --json
ParameterTypeRequiredDescription
contract_id string yes Path parameter `contract-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 directory queries.
microsoft-entra-id.microsoft_entra_id_contracts_contract_update_contract 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_contracts_contract_update_contract --json
ParameterTypeRequiredDescription
contract_id string yes Path parameter `contract-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_contracts_contract_check_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_contracts_contract_check_member_groups --json
ParameterTypeRequiredDescription
contract_id string yes Path parameter `contract-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_contracts_contract_check_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_contracts_contract_check_member_objects --json
ParameterTypeRequiredDescription
contract_id string yes Path parameter `contract-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_contracts_contract_get_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_contracts_contract_get_member_groups --json
ParameterTypeRequiredDescription
contract_id string yes Path parameter `contract-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_contracts_contract_get_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_contracts_contract_get_member_objects --json
ParameterTypeRequiredDescription
contract_id string yes Path parameter `contract-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_contracts_contract_restore 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_contracts_contract_restore --json
ParameterTypeRequiredDescription
contract_id string yes Path parameter `contract-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_device_list_device 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_device_list_device --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_devices_device_create_device 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_device_create_device --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_devices_device_delete_device_by_device_id 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_device_delete_device_by_device_id --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `deviceId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_devices_device_get_device_by_device_id 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_device_get_device_by_device_id --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `deviceId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_devices_device_update_device_by_device_id 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_device_update_device_by_device_id --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `deviceId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_devices_get_count_3489 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_get_count_3489 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_devices_delta 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_delta --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_devices_get_available_extension_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_get_available_extension_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_devices_get_by_ids 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_get_by_ids --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_devices_validate_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_validate_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_devices_device_delete_device 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_device_delete_device --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_device_get_device 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_device_get_device --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_device_update_device 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_device_update_device --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_devices_device_check_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_device_check_member_groups --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_devices_device_check_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_device_check_member_objects --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_devices_list_extensions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_extensions --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_create_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_create_extensions --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_devices_extensions_get_count_40b0 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_extensions_get_count_40b0 --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_delete_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_delete_extensions --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
extension_id string yes Path parameter `extension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_get_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_get_extensions --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
extension_id string yes Path parameter `extension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_update_extensions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_update_extensions --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
extension_id string yes Path parameter `extension-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_devices_device_get_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_device_get_member_groups --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_devices_device_get_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_device_get_member_objects --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_devices_list_member_of 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_member_of --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_member_of_get_count_bd14 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_member_of_get_count_bd14 --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_list_member_of_as_administrative_unit 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_member_of_as_administrative_unit --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_member_of_get_count_as_administrative_unit_dd3f 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_member_of_get_count_as_administrative_unit_dd3f --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_list_member_of_as_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_member_of_as_group --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_member_of_get_count_as_group_3872 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_member_of_get_count_as_group_3872 --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_get_member_of 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_get_member_of --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_get_member_of_as_administrative_unit 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_get_member_of_as_administrative_unit --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_get_member_of_as_group 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_get_member_of_as_group --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_d4e7 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_d4e7 --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_delete_ref_registered_owners 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_delete_ref_registered_owners --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_list_ref_registered_owners 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_ref_registered_owners --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_create_ref_registered_owners 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_create_ref_registered_owners --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners_as_app_role_assignment 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners_as_app_role_assignment --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_as_app_role_assignment_6c67 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_as_app_role_assignment_6c67 --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners_as_endpoint 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners_as_endpoint --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_as_endpoint_81ea 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_as_endpoint_81ea --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners_as_service_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners_as_service_principal --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_as_service_principal_bf43 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_as_service_principal_bf43 --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners_as_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_registered_owners_as_user --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_as_user_8c65 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_registered_owners_get_count_as_user_8c65 --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_registered_owners_delete_ref_directory_object 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_registered_owners_delete_ref_directory_object --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_get_registered_owners_as_app_role_assignment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_get_registered_owners_as_app_role_assignment --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_get_registered_owners_as_endpoint 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_get_registered_owners_as_endpoint --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_get_registered_owners_as_service_principal 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_get_registered_owners_as_service_principal --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_get_registered_owners_as_user 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_get_registered_owners_as_user --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_list_registered_users 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_registered_users --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_e934 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_e934 --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_delete_ref_registered_users 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_delete_ref_registered_users --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_list_ref_registered_users 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_ref_registered_users --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_create_ref_registered_users 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_create_ref_registered_users --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_devices_list_registered_users_as_app_role_assignment 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_registered_users_as_app_role_assignment --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_as_app_role_assignment_7afb 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_as_app_role_assignment_7afb --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_list_registered_users_as_endpoint 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_registered_users_as_endpoint --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_as_endpoint_38fb 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_as_endpoint_38fb --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_list_registered_users_as_service_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_registered_users_as_service_principal --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_as_service_principal_c21e 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_as_service_principal_c21e --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_list_registered_users_as_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_registered_users_as_user --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_as_user_ab49 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_registered_users_get_count_as_user_ab49 --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_registered_users_delete_ref_directory_object 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_registered_users_delete_ref_directory_object --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_get_registered_users_as_app_role_assignment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_get_registered_users_as_app_role_assignment --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_get_registered_users_as_endpoint 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_get_registered_users_as_endpoint --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_get_registered_users_as_service_principal 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_get_registered_users_as_service_principal --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_get_registered_users_as_user 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_get_registered_users_as_user --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_device_restore 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_device_restore --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_list_transitive_member_of 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_transitive_member_of --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_transitive_member_of_get_count_5cbd 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_transitive_member_of_get_count_5cbd --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_list_transitive_member_of_as_administrative_unit 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_transitive_member_of_as_administrative_unit --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_transitive_member_of_get_count_as_administrative_unit_24c9 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_transitive_member_of_get_count_as_administrative_unit_24c9 --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_list_transitive_member_of_as_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_list_transitive_member_of_as_group --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_transitive_member_of_get_count_as_group_bca9 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_transitive_member_of_get_count_as_group_bca9 --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_get_transitive_member_of 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_get_transitive_member_of --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_get_transitive_member_of_as_administrative_unit 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_get_transitive_member_of_as_administrative_unit --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_devices_get_transitive_member_of_as_group 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_devices_get_transitive_member_of_as_group --json
ParameterTypeRequiredDescription
device_id string yes Path parameter `device-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_directory_get_directory 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_directory_get_directory --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_directory_update_directory 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_directory_update_directory --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_list_administrative_units 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_list_administrative_units --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_create_administrative_units 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_create_administrative_units --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_count_a5a1 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_count_a5a1 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_delta 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_delta --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_delete_administrative_units 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_delete_administrative_units --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_get_administrative_units 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_get_administrative_units --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_update_administrative_units 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_update_administrative_units --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_extensions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_extensions --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_create_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_create_extensions --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_extensions_get_count_48cb 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_extensions_get_count_48cb --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_delete_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_delete_extensions --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-id`.
extension_id string yes Path parameter `extension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_extensions --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-id`.
extension_id string yes Path parameter `extension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_update_extensions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_update_extensions --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-id`.
extension_id string yes Path parameter `extension-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_create_members 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_create_members --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_777a 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_777a --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_delete_ref_members 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_delete_ref_members --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_ref_members 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_ref_members --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_create_ref_members 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_create_ref_members --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_application 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_application --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_application_12bb 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_application_12bb --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_device 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_device --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_device_a313 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_device_a313 --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_group --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_group_af07 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_group_af07 --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_org_contact 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_org_contact --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_org_contact_7392 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_org_contact_7392 --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_service_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_service_principal --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_service_principal_1d41 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_service_principal_1d41 --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_members_as_user --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_user_5d18 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_get_count_as_user_5d18 --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_delete_ref_directory_object 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_members_delete_ref_directory_object --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_application 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_application --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_device 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_device --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_group 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_group --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_org_contact 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_org_contact --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_service_principal 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_service_principal --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_user 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_members_as_user --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_scoped_role_members 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_list_scoped_role_members --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_create_scoped_role_members 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_create_scoped_role_members --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_scoped_role_members_get_count_cb3a 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_scoped_role_members_get_count_cb3a --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_delete_scoped_role_members 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_delete_scoped_role_members --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-id`.
scoped_role_membership_id string yes Path parameter `scopedRoleMembership-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_scoped_role_members 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_get_scoped_role_members --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-id`.
scoped_role_membership_id string yes Path parameter `scopedRoleMembership-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_administrative_units_update_scoped_role_members 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_administrative_units_update_scoped_role_members --json
ParameterTypeRequiredDescription
administrative_unit_id string yes Path parameter `administrativeUnit-id`.
scoped_role_membership_id string yes Path parameter `scopedRoleMembership-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_list_attribute_sets 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_list_attribute_sets --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_create_attribute_sets 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_create_attribute_sets --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_attribute_sets_get_count_147b 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_attribute_sets_get_count_147b --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_delete_attribute_sets 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_delete_attribute_sets --json
ParameterTypeRequiredDescription
attribute_set_id string yes Path parameter `attributeSet-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_get_attribute_sets 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_get_attribute_sets --json
ParameterTypeRequiredDescription
attribute_set_id string yes Path parameter `attributeSet-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_update_attribute_sets 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_update_attribute_sets --json
ParameterTypeRequiredDescription
attribute_set_id string yes Path parameter `attributeSet-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_list_custom_security_attribute_definitions 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_list_custom_security_attribute_definitions --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_create_custom_security_attribute_definitions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_create_custom_security_attribute_definitions --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_get_count_ae4b 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_get_count_ae4b --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_delete_custom_security_attribute_definitions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_delete_custom_security_attribute_definitions --json
ParameterTypeRequiredDescription
custom_security_attribute_definition_id string yes Path parameter `customSecurityAttributeDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_get_custom_security_attribute_definitions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_get_custom_security_attribute_definitions --json
ParameterTypeRequiredDescription
custom_security_attribute_definition_id string yes Path parameter `customSecurityAttributeDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_update_custom_security_attribute_definitions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_update_custom_security_attribute_definitions --json
ParameterTypeRequiredDescription
custom_security_attribute_definition_id string yes Path parameter `customSecurityAttributeDefinition-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_list_allowed_values 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_list_allowed_values --json
ParameterTypeRequiredDescription
custom_security_attribute_definition_id string yes Path parameter `customSecurityAttributeDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_create_allowed_values 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_create_allowed_values --json
ParameterTypeRequiredDescription
custom_security_attribute_definition_id string yes Path parameter `customSecurityAttributeDefinition-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_allowed_values_get_count_c982 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_allowed_values_get_count_c982 --json
ParameterTypeRequiredDescription
custom_security_attribute_definition_id string yes Path parameter `customSecurityAttributeDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_delete_allowed_values 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_delete_allowed_values --json
ParameterTypeRequiredDescription
custom_security_attribute_definition_id string yes Path parameter `customSecurityAttributeDefinition-id`.
allowed_value_id string yes Path parameter `allowedValue-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_get_allowed_values 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_get_allowed_values --json
ParameterTypeRequiredDescription
custom_security_attribute_definition_id string yes Path parameter `customSecurityAttributeDefinition-id`.
allowed_value_id string yes Path parameter `allowedValue-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_update_allowed_values 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_custom_security_attribute_definitions_update_allowed_values --json
ParameterTypeRequiredDescription
custom_security_attribute_definition_id string yes Path parameter `customSecurityAttributeDefinition-id`.
allowed_value_id string yes Path parameter `allowedValue-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_665f 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_665f --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_available_extension_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_available_extension_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_by_ids 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_by_ids --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_administrative_unit 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_administrative_unit --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_administrative_unit_0f56 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_administrative_unit_0f56 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_application 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_application --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_application_09ac 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_application_09ac --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_device 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_device --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_device_6f35 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_device_6f35 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_group 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_group --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_group_255d 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_group_255d --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_service_principal 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_service_principal --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_service_principal_6632 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_service_principal_6632 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_user 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_list_deleted_items_as_user --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_user_bc15 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_deleted_items_get_count_as_user_bc15 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_deleted_items_validate_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_deleted_items_validate_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_delete_deleted_items 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_delete_deleted_items --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_check_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_check_member_groups --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_check_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_check_member_objects --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_get_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_get_member_groups --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_get_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_get_member_objects --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_administrative_unit 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_administrative_unit --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_application 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_application --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_device 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_device --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_group --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_service_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_service_principal --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_get_deleted_items_as_user --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_restore 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_deleted_items_directory_object_restore --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_list_device_local_credentials 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_list_device_local_credentials --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_create_device_local_credentials 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_create_device_local_credentials --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_device_local_credentials_get_count_43fe 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_device_local_credentials_get_count_43fe --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_delete_device_local_credentials 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_delete_device_local_credentials --json
ParameterTypeRequiredDescription
device_local_credential_info_id string yes Path parameter `deviceLocalCredentialInfo-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_get_device_local_credentials 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_get_device_local_credentials --json
ParameterTypeRequiredDescription
device_local_credential_info_id string yes Path parameter `deviceLocalCredentialInfo-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_update_device_local_credentials 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_update_device_local_credentials --json
ParameterTypeRequiredDescription
device_local_credential_info_id string yes Path parameter `deviceLocalCredentialInfo-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_list_federation_configurations 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_list_federation_configurations --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_create_federation_configurations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_create_federation_configurations --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_federation_configurations_get_count_1592 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_federation_configurations_get_count_1592 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_federation_configurations_available_provider_types 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_federation_configurations_available_provider_types --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_delete_federation_configurations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_delete_federation_configurations --json
ParameterTypeRequiredDescription
identity_provider_base_id string yes Path parameter `identityProviderBase-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_get_federation_configurations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_get_federation_configurations --json
ParameterTypeRequiredDescription
identity_provider_base_id string yes Path parameter `identityProviderBase-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_update_federation_configurations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_update_federation_configurations --json
ParameterTypeRequiredDescription
identity_provider_base_id string yes Path parameter `identityProviderBase-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_list_on_premises_synchronization 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_list_on_premises_synchronization --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_create_on_premises_synchronization 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_create_on_premises_synchronization --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_on_premises_synchronization_get_count_df9d 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_on_premises_synchronization_get_count_df9d --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_delete_on_premises_synchronization 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_delete_on_premises_synchronization --json
ParameterTypeRequiredDescription
on_premises_directory_synchronization_id string yes Path parameter `onPremisesDirectorySynchronization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_get_on_premises_synchronization 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_get_on_premises_synchronization --json
ParameterTypeRequiredDescription
on_premises_directory_synchronization_id string yes Path parameter `onPremisesDirectorySynchronization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_update_on_premises_synchronization 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_update_on_premises_synchronization --json
ParameterTypeRequiredDescription
on_premises_directory_synchronization_id string yes Path parameter `onPremisesDirectorySynchronization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_delete_public_key_infrastructure 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_delete_public_key_infrastructure --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_get_public_key_infrastructure 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_get_public_key_infrastructure --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_update_public_key_infrastructure 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_update_public_key_infrastructure --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_list_certificate_based_auth_configurations 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_list_certificate_based_auth_configurations --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_create_certificate_based_auth_configurations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_create_certificate_based_auth_configurations --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_get_count_4154 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_get_count_4154 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_delete_certificate_based_auth_configurations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_delete_certificate_based_auth_configurations --json
ParameterTypeRequiredDescription
certificate_based_auth_pki_id string yes Path parameter `certificateBasedAuthPki-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_get_certificate_based_auth_configurations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_get_certificate_based_auth_configurations --json
ParameterTypeRequiredDescription
certificate_based_auth_pki_id string yes Path parameter `certificateBasedAuthPki-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_update_certificate_based_auth_configurations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_update_certificate_based_auth_configurations --json
ParameterTypeRequiredDescription
certificate_based_auth_pki_id string yes Path parameter `certificateBasedAuthPki-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_list_certificate_authorities 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_list_certificate_authorities --json
ParameterTypeRequiredDescription
certificate_based_auth_pki_id string yes Path parameter `certificateBasedAuthPki-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_create_certificate_authorities 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_create_certificate_authorities --json
ParameterTypeRequiredDescription
certificate_based_auth_pki_id string yes Path parameter `certificateBasedAuthPki-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_certificate_authorities_get_count_8126 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_certificate_authorities_get_count_8126 --json
ParameterTypeRequiredDescription
certificate_based_auth_pki_id string yes Path parameter `certificateBasedAuthPki-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_delete_certificate_authorities 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_delete_certificate_authorities --json
ParameterTypeRequiredDescription
certificate_based_auth_pki_id string yes Path parameter `certificateBasedAuthPki-id`.
certificate_authority_detail_id string yes Path parameter `certificateAuthorityDetail-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_get_certificate_authorities 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_get_certificate_authorities --json
ParameterTypeRequiredDescription
certificate_based_auth_pki_id string yes Path parameter `certificateBasedAuthPki-id`.
certificate_authority_detail_id string yes Path parameter `certificateAuthorityDetail-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_update_certificate_authorities 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_update_certificate_authorities --json
ParameterTypeRequiredDescription
certificate_based_auth_pki_id string yes Path parameter `certificateBasedAuthPki-id`.
certificate_authority_detail_id string yes Path parameter `certificateAuthorityDetail-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_certificate_based_auth_pki_upload 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_public_key_infrastructure_certificate_based_auth_configurations_certificate_based_auth_pki_upload --json
ParameterTypeRequiredDescription
certificate_based_auth_pki_id string yes Path parameter `certificateBasedAuthPki-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_list_subscriptions 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_list_subscriptions --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_create_subscriptions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_create_subscriptions --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_subscriptions_delete_by_commerce_subscription_id 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_subscriptions_delete_by_commerce_subscription_id --json
ParameterTypeRequiredDescription
commerce_subscription_id string yes Path parameter `commerceSubscriptionId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_subscriptions_get_by_commerce_subscription_id 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_subscriptions_get_by_commerce_subscription_id --json
ParameterTypeRequiredDescription
commerce_subscription_id string yes Path parameter `commerceSubscriptionId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_subscriptions_update_by_commerce_subscription_id 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_subscriptions_update_by_commerce_subscription_id --json
ParameterTypeRequiredDescription
commerce_subscription_id string yes Path parameter `commerceSubscriptionId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_subscriptions_get_count_06e4 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_subscriptions_get_count_06e4 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_delete_subscriptions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_delete_subscriptions --json
ParameterTypeRequiredDescription
company_subscription_id string yes Path parameter `companySubscription-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_get_subscriptions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_get_subscriptions --json
ParameterTypeRequiredDescription
company_subscription_id string yes Path parameter `companySubscription-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_update_subscriptions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_update_subscriptions --json
ParameterTypeRequiredDescription
company_subscription_id string yes Path parameter `companySubscription-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_list_directory_object 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_list_directory_object --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_create_directory_object 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_create_directory_object --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_objects_get_count_3210 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_objects_get_count_3210 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_objects_delta 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_objects_delta --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_objects_get_available_extension_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_objects_get_available_extension_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_objects_get_by_ids 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_objects_get_by_ids --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_objects_validate_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_objects_validate_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_delete_directory_object 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_delete_directory_object --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_get_directory_object 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_get_directory_object --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_update_directory_object 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_update_directory_object --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_check_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_check_member_groups --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_check_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_check_member_objects --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_get_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_get_member_groups --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_get_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_get_member_objects --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_restore 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_objects_directory_object_restore --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_list_directory_role_template 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_list_directory_role_template --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_create_directory_role_template 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_create_directory_role_template --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_role_templates_get_count_ed85 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_role_templates_get_count_ed85 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_role_templates_delta 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_role_templates_delta --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_role_templates_get_available_extension_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_role_templates_get_available_extension_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_role_templates_get_by_ids 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_role_templates_get_by_ids --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_role_templates_validate_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_role_templates_validate_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_delete_directory_role_template 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_delete_directory_role_template --json
ParameterTypeRequiredDescription
directory_role_template_id string yes Path parameter `directoryRoleTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_get_directory_role_template 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_get_directory_role_template --json
ParameterTypeRequiredDescription
directory_role_template_id string yes Path parameter `directoryRoleTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_update_directory_role_template 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_update_directory_role_template --json
ParameterTypeRequiredDescription
directory_role_template_id string yes Path parameter `directoryRoleTemplate-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_check_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_check_member_groups --json
ParameterTypeRequiredDescription
directory_role_template_id string yes Path parameter `directoryRoleTemplate-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_check_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_check_member_objects --json
ParameterTypeRequiredDescription
directory_role_template_id string yes Path parameter `directoryRoleTemplate-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_get_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_get_member_groups --json
ParameterTypeRequiredDescription
directory_role_template_id string yes Path parameter `directoryRoleTemplate-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_get_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_get_member_objects --json
ParameterTypeRequiredDescription
directory_role_template_id string yes Path parameter `directoryRoleTemplate-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_restore 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_role_templates_directory_role_template_restore --json
ParameterTypeRequiredDescription
directory_role_template_id string yes Path parameter `directoryRoleTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_list_directory_role 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_list_directory_role --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_create_directory_role 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_create_directory_role --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_delete_directory_role_by_role_template_id 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_delete_directory_role_by_role_template_id --json
ParameterTypeRequiredDescription
role_template_id string yes Path parameter `roleTemplateId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_get_directory_role_by_role_template_id 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_get_directory_role_by_role_template_id --json
ParameterTypeRequiredDescription
role_template_id string yes Path parameter `roleTemplateId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_update_directory_role_by_role_template_id 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_update_directory_role_by_role_template_id --json
ParameterTypeRequiredDescription
role_template_id string yes Path parameter `roleTemplateId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_roles_get_count_ad68 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_get_count_ad68 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_delta 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_delta --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_get_available_extension_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_get_available_extension_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_roles_get_by_ids 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_get_by_ids --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_roles_validate_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_validate_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_delete_directory_role 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_delete_directory_role --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_get_directory_role 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_get_directory_role --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_update_directory_role 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_update_directory_role --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_check_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_check_member_groups --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_check_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_check_member_objects --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_get_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_get_member_groups --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_get_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_get_member_objects --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_roles_list_members 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_list_members --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_5361 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_5361 --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_delete_ref_members 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_delete_ref_members --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_list_ref_members 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_list_ref_members --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_create_ref_members 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_create_ref_members --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_application 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_application --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_application_290c 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_application_290c --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_device 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_device --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_device_e712 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_device_e712 --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_group --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_group_b36f 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_group_b36f --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_org_contact 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_org_contact --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_org_contact_3e36 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_org_contact_3e36 --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_service_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_service_principal --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_service_principal_b8f5 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_service_principal_b8f5 --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_list_members_as_user --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_user_af1f 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_members_get_count_as_user_af1f --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_members_delete_ref_directory_object 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_members_delete_ref_directory_object --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_application 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_application --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_device 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_device --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_group 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_group --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_org_contact 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_org_contact --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_service_principal 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_service_principal --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_user 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_get_members_as_user --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_restore 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_directory_role_restore --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_list_scoped_members 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_list_scoped_members --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_create_scoped_members 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_create_scoped_members --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_directory_roles_scoped_members_get_count_b2b2 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_scoped_members_get_count_b2b2 --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_delete_scoped_members 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_delete_scoped_members --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-id`.
scoped_role_membership_id string yes Path parameter `scopedRoleMembership-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_get_scoped_members 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_get_scoped_members --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-id`.
scoped_role_membership_id string yes Path parameter `scopedRoleMembership-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 directory queries.
microsoft-entra-id.microsoft_entra_id_directory_roles_update_scoped_members 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_directory_roles_update_scoped_members --json
ParameterTypeRequiredDescription
directory_role_id string yes Path parameter `directoryRole-id`.
scoped_role_membership_id string yes Path parameter `scopedRoleMembership-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_domains_domain_list_domain 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_domain_list_domain --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_domains_domain_create_domain 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_domain_create_domain --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_domains_get_count_3c31 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_get_count_3c31 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_domains_domain_delete_domain 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_domain_delete_domain --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_domain_get_domain 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_domain_get_domain --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_domain_update_domain 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_domain_update_domain --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_domains_list_domain_name_references 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_list_domain_name_references --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_domain_name_references_get_count_a205 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_domain_name_references_get_count_a205 --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_get_domain_name_references 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_get_domain_name_references --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_list_federation_configuration 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_list_federation_configuration --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_create_federation_configuration 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_create_federation_configuration --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_domains_federation_configuration_get_count_9087 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_federation_configuration_get_count_9087 --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_delete_federation_configuration 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_delete_federation_configuration --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-id`.
internal_domain_federation_id string yes Path parameter `internalDomainFederation-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_get_federation_configuration 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_get_federation_configuration --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-id`.
internal_domain_federation_id string yes Path parameter `internalDomainFederation-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_update_federation_configuration 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_update_federation_configuration --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-id`.
internal_domain_federation_id string yes Path parameter `internalDomainFederation-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_domains_domain_force_delete 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_domain_force_delete --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_domains_domain_promote 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_domain_promote --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_get_root_domain 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_get_root_domain --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_list_service_configuration_records 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_list_service_configuration_records --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_create_service_configuration_records 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_create_service_configuration_records --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_domains_service_configuration_records_get_count_999b 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_service_configuration_records_get_count_999b --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_delete_service_configuration_records 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_delete_service_configuration_records --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-id`.
domain_dns_record_id string yes Path parameter `domainDnsRecord-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_get_service_configuration_records 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_get_service_configuration_records --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-id`.
domain_dns_record_id string yes Path parameter `domainDnsRecord-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_update_service_configuration_records 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_update_service_configuration_records --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-id`.
domain_dns_record_id string yes Path parameter `domainDnsRecord-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_domains_list_verification_dns_records 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_list_verification_dns_records --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_create_verification_dns_records 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_create_verification_dns_records --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_domains_verification_dns_records_get_count_d5a7 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_verification_dns_records_get_count_d5a7 --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_delete_verification_dns_records 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_delete_verification_dns_records --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-id`.
domain_dns_record_id string yes Path parameter `domainDnsRecord-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_get_verification_dns_records 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_get_verification_dns_records --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-id`.
domain_dns_record_id string yes Path parameter `domainDnsRecord-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 directory queries.
microsoft-entra-id.microsoft_entra_id_domains_update_verification_dns_records 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_update_verification_dns_records --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-id`.
domain_dns_record_id string yes Path parameter `domainDnsRecord-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_domains_domain_verify 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_domains_domain_verify --json
ParameterTypeRequiredDescription
domain_id string yes Path parameter `domain-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_group_list_group 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_list_group --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_groups_group_create_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_create_group --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_group_delete_group_by_unique_name 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_delete_group_by_unique_name --json
ParameterTypeRequiredDescription
unique_name string yes Path parameter `uniqueName`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_groups_group_get_group_by_unique_name 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_get_group_by_unique_name --json
ParameterTypeRequiredDescription
unique_name string yes Path parameter `uniqueName`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_groups_group_update_group_by_unique_name 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_update_group_by_unique_name --json
ParameterTypeRequiredDescription
unique_name string yes Path parameter `uniqueName`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_get_count_044a 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_count_044a --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_groups_delta 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_delta --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_available_extension_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_available_extension_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_get_by_ids 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_by_ids --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_validate_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_validate_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_group_delete_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_delete_group --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_group_get_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_get_group --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_group_update_group 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_update_group --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_list_accepted_senders 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_accepted_senders --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_accepted_senders_get_count_576b 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_accepted_senders_get_count_576b --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_delete_ref_accepted_senders 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_delete_ref_accepted_senders --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_ref_accepted_senders 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_ref_accepted_senders --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_create_ref_accepted_senders 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_create_ref_accepted_senders --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_accepted_senders_delete_ref_directory_object 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_accepted_senders_delete_ref_directory_object --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_group_add_favorite 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_add_favorite --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_app_role_assignments 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_app_role_assignments --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_create_app_role_assignments 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_create_app_role_assignments --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_app_role_assignments_get_count_ce16 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_app_role_assignments_get_count_ce16 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_delete_app_role_assignments 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_delete_app_role_assignments --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
app_role_assignment_id string yes Path parameter `appRoleAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_app_role_assignments 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_app_role_assignments --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
app_role_assignment_id string yes Path parameter `appRoleAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_update_app_role_assignments 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_update_app_role_assignments --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
app_role_assignment_id string yes Path parameter `appRoleAssignment-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_group_assign_license 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_assign_license --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_group_check_granted_permissions_for_app 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_check_granted_permissions_for_app --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_group_check_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_check_member_groups --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_group_check_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_check_member_objects --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_get_created_on_behalf_of 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_created_on_behalf_of --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_extensions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_extensions --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_create_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_create_extensions --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_extensions_get_count_e2e0 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_extensions_get_count_e2e0 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_delete_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_delete_extensions --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
extension_id string yes Path parameter `extension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_extensions --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
extension_id string yes Path parameter `extension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_update_extensions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_update_extensions --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
extension_id string yes Path parameter `extension-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_group_get_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_get_member_groups --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_group_get_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_get_member_objects --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_list_group_lifecycle_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_group_lifecycle_policies --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_create_group_lifecycle_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_create_group_lifecycle_policies --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_group_lifecycle_policies_get_count_ba70 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_lifecycle_policies_get_count_ba70 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_delete_group_lifecycle_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_delete_group_lifecycle_policies --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
group_lifecycle_policy_id string yes Path parameter `groupLifecyclePolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_group_lifecycle_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_group_lifecycle_policies --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
group_lifecycle_policy_id string yes Path parameter `groupLifecyclePolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_update_group_lifecycle_policies 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_update_group_lifecycle_policies --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
group_lifecycle_policy_id string yes Path parameter `groupLifecyclePolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_group_group_lifecycle_policies_group_lifecycle_policy_add_group 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_group_lifecycle_policies_group_lifecycle_policy_add_group --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
group_lifecycle_policy_id string yes Path parameter `groupLifecyclePolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_group_group_lifecycle_policies_group_lifecycle_policy_remove_group 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_group_lifecycle_policies_group_lifecycle_policy_remove_group --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
group_lifecycle_policy_id string yes Path parameter `groupLifecyclePolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_list_member_of 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_member_of --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_member_of_get_count_e9c5 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_member_of_get_count_e9c5 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_member_of_as_administrative_unit 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_member_of_as_administrative_unit --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_member_of_get_count_as_administrative_unit_4c17 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_member_of_get_count_as_administrative_unit_4c17 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_member_of_as_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_member_of_as_group --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_member_of_get_count_as_group_6572 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_member_of_get_count_as_group_6572 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_member_of 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_member_of --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_member_of_as_administrative_unit 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_member_of_as_administrative_unit --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_member_of_as_group 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_member_of_as_group --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_members 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_members --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_members_get_count_e1e6 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_members_get_count_e1e6 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_delete_ref_members 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_delete_ref_members --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_ref_members 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_ref_members --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_create_ref_members 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_create_ref_members --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_list_members_as_application 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_members_as_application --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_application_2734 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_application_2734 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_members_as_device 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_members_as_device --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_device_e7a3 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_device_e7a3 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_members_as_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_members_as_group --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_group_86be 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_group_86be --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_members_as_org_contact 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_members_as_org_contact --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_org_contact_9781 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_org_contact_9781 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_members_as_service_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_members_as_service_principal --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_service_principal_c922 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_service_principal_c922 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_members_as_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_members_as_user --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_user_b36e 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_members_get_count_as_user_b36e --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_members_delete_ref_directory_object 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_members_delete_ref_directory_object --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_members_as_application 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_members_as_application --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_members_as_device 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_members_as_device --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_members_as_group 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_members_as_group --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_members_as_org_contact 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_members_as_org_contact --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_members_as_service_principal 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_members_as_service_principal --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_members_as_user 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_members_as_user --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_3ebc 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_3ebc --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_application 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_application --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_application_85ba 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_application_85ba --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_device 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_device --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_device_5960 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_device_5960 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_group --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_group_bee4 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_group_bee4 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_org_contact 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_org_contact --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_org_contact_7eba 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_org_contact_7eba --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_service_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_service_principal --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_service_principal_0062 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_service_principal_0062 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_members_with_license_errors_as_user --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_user_0a9e 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_members_with_license_errors_get_count_as_user_0a9e --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_application 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_application --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_device 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_device --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_group 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_group --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_org_contact 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_org_contact --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_service_principal 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_service_principal --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_user 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_members_with_license_errors_as_user --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_delete_on_premises_sync_behavior 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_delete_on_premises_sync_behavior --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_on_premises_sync_behavior 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_on_premises_sync_behavior --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_update_on_premises_sync_behavior 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_update_on_premises_sync_behavior --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_list_owners 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_owners --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_9fe3 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_9fe3 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_delete_ref_owners 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_delete_ref_owners --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_ref_owners 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_ref_owners --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_create_ref_owners 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_create_ref_owners --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_application 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_application --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_application_bd83 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_application_bd83 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_device 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_device --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_device_2b5b 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_device_2b5b --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_group --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_group_a694 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_group_a694 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_org_contact 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_org_contact --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_org_contact_b70b 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_org_contact_b70b --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_service_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_service_principal --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_service_principal_8498 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_service_principal_8498 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_owners_as_user --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_user_1c87 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_owners_get_count_as_user_1c87 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_owners_delete_ref_directory_object 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_owners_delete_ref_directory_object --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_application 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_application --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_device 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_device --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_group 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_group --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_org_contact 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_org_contact --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_service_principal 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_service_principal --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_user 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_owners_as_user --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_permission_grants 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_permission_grants --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_create_permission_grants 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_create_permission_grants --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_permission_grants_get_count_76af 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_permission_grants_get_count_76af --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_delete_permission_grants 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_delete_permission_grants --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
resource_specific_permission_grant_id string yes Path parameter `resourceSpecificPermissionGrant-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_permission_grants 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_permission_grants --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
resource_specific_permission_grant_id string yes Path parameter `resourceSpecificPermissionGrant-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_update_permission_grants 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_update_permission_grants --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
resource_specific_permission_grant_id string yes Path parameter `resourceSpecificPermissionGrant-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_list_rejected_senders 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_rejected_senders --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_rejected_senders_get_count_b188 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_rejected_senders_get_count_b188 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_delete_ref_rejected_senders 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_delete_ref_rejected_senders --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_ref_rejected_senders 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_ref_rejected_senders --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_create_ref_rejected_senders 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_create_ref_rejected_senders --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_groups_rejected_senders_delete_ref_directory_object 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_rejected_senders_delete_ref_directory_object --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_group_remove_favorite 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_remove_favorite --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_group_renew 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_renew --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_group_reset_unseen_count 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_reset_unseen_count --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_group_restore 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_restore --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_group_retry_service_provisioning 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_retry_service_provisioning --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_service_provisioning_errors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_service_provisioning_errors_get_count_e58f 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_service_provisioning_errors_get_count_e58f --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_group_subscribe_by_mail 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_subscribe_by_mail --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_transitive_member_of 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_transitive_member_of --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_transitive_member_of_get_count_c756 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_transitive_member_of_get_count_c756 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_transitive_member_of_as_administrative_unit 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_transitive_member_of_as_administrative_unit --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_transitive_member_of_get_count_as_administrative_unit_af58 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_transitive_member_of_get_count_as_administrative_unit_af58 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_transitive_member_of_as_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_transitive_member_of_as_group --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_transitive_member_of_get_count_as_group_4a46 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_transitive_member_of_get_count_as_group_4a46 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_transitive_member_of 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_transitive_member_of --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_transitive_member_of_as_administrative_unit 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_transitive_member_of_as_administrative_unit --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_transitive_member_of_as_group 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_transitive_member_of_as_group --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_1996 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_1996 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_application 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_application --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_application_eafb 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_application_eafb --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_device 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_device --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_device_0e55 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_device_0e55 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_group --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_group_d4d7 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_group_d4d7 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_org_contact 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_org_contact --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_org_contact_a89e 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_org_contact_a89e --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_service_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_service_principal --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_service_principal_102f 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_service_principal_102f --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_list_transitive_members_as_user --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_user_c600 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_transitive_members_get_count_as_user_c600 --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_application 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_application --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_device 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_device --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_group 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_group --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_org_contact 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_org_contact --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_service_principal 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_service_principal --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_user 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_get_transitive_members_as_user --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_group_unsubscribe_by_mail 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_unsubscribe_by_mail --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_groups_group_validate_properties 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_groups_group_validate_properties --json
ParameterTypeRequiredDescription
group_id string yes Path parameter `group-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_list_authentication_context_class_references 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_list_authentication_context_class_references --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_create_authentication_context_class_references 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_create_authentication_context_class_references --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_context_class_references_get_count_1d40 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_context_class_references_get_count_1d40 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_authentication_context_class_references 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_authentication_context_class_references --json
ParameterTypeRequiredDescription
authentication_context_class_reference_id string yes Path parameter `authenticationContextClassReference-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_authentication_context_class_references 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_authentication_context_class_references --json
ParameterTypeRequiredDescription
authentication_context_class_reference_id string yes Path parameter `authenticationContextClassReference-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_authentication_context_class_references 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_authentication_context_class_references --json
ParameterTypeRequiredDescription
authentication_context_class_reference_id string yes Path parameter `authenticationContextClassReference-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_authentication_strength 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_authentication_strength --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_authentication_strength 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_authentication_strength --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_authentication_strength 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_authentication_strength --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_list_authentication_method_modes 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_list_authentication_method_modes --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_create_authentication_method_modes 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_create_authentication_method_modes --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_authentication_method_modes_get_count_e876 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_authentication_method_modes_get_count_e876 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_delete_authentication_method_modes 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_delete_authentication_method_modes --json
ParameterTypeRequiredDescription
authentication_method_mode_detail_id string yes Path parameter `authenticationMethodModeDetail-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_get_authentication_method_modes 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_get_authentication_method_modes --json
ParameterTypeRequiredDescription
authentication_method_mode_detail_id string yes Path parameter `authenticationMethodModeDetail-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_update_authentication_method_modes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_update_authentication_method_modes --json
ParameterTypeRequiredDescription
authentication_method_mode_detail_id string yes Path parameter `authenticationMethodModeDetail-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_list_policies 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_list_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_create_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_create_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_get_count_8166 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_get_count_8166 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_delete_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_delete_policies --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_get_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_get_policies --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_update_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_update_policies --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_list_combination_configurations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_list_combination_configurations --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_create_combination_configurations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_create_combination_configurations --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_combination_configurations_get_count_64b7 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_combination_configurations_get_count_64b7 --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_delete_combination_configurations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_delete_combination_configurations --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-id`.
authentication_combination_configuration_id string yes Path parameter `authenticationCombinationConfiguration-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_get_combination_configurations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_get_combination_configurations --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-id`.
authentication_combination_configuration_id string yes Path parameter `authenticationCombinationConfiguration-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_update_combination_configurations 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_update_combination_configurations --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-id`.
authentication_combination_configuration_id string yes Path parameter `authenticationCombinationConfiguration-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_authentication_strength_policy_update_allowed_combinations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_authentication_strength_policy_update_allowed_combinations --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_authentication_strength_policy_usage 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_authentication_strength_policies_authentication_strength_policy_usage --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_deleted_items 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_deleted_items --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_deleted_items 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_deleted_items --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_deleted_items 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_deleted_items --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_list_named_locations 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_list_named_locations --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_create_named_locations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_create_named_locations --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_named_locations_get_count_74ac 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_named_locations_get_count_74ac --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_delete_named_locations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_delete_named_locations --json
ParameterTypeRequiredDescription
named_location_id string yes Path parameter `namedLocation-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_get_named_locations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_get_named_locations --json
ParameterTypeRequiredDescription
named_location_id string yes Path parameter `namedLocation-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_update_named_locations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_update_named_locations --json
ParameterTypeRequiredDescription
named_location_id string yes Path parameter `namedLocation-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_named_locations_named_location_restore 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_named_locations_named_location_restore --json
ParameterTypeRequiredDescription
named_location_id string yes Path parameter `namedLocation-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_list_policies 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_list_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_create_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_create_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_policies_get_count_9e9d 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_policies_get_count_9e9d --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_delete_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_delete_policies --json
ParameterTypeRequiredDescription
conditional_access_policy_id string yes Path parameter `conditionalAccessPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_get_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_get_policies --json
ParameterTypeRequiredDescription
conditional_access_policy_id string yes Path parameter `conditionalAccessPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_update_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_update_policies --json
ParameterTypeRequiredDescription
conditional_access_policy_id string yes Path parameter `conditionalAccessPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_policies_conditional_access_policy_restore 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_deleted_items_policies_conditional_access_policy_restore --json
ParameterTypeRequiredDescription
conditional_access_policy_id string yes Path parameter `conditionalAccessPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_evaluate 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_evaluate --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_list_named_locations 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_list_named_locations --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_create_named_locations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_create_named_locations --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_named_locations_get_count_e424 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_named_locations_get_count_e424 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_named_locations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_named_locations --json
ParameterTypeRequiredDescription
named_location_id string yes Path parameter `namedLocation-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_named_locations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_named_locations --json
ParameterTypeRequiredDescription
named_location_id string yes Path parameter `namedLocation-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_named_locations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_named_locations --json
ParameterTypeRequiredDescription
named_location_id string yes Path parameter `namedLocation-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_named_locations_named_location_restore 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_named_locations_named_location_restore --json
ParameterTypeRequiredDescription
named_location_id string yes Path parameter `namedLocation-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_list_policies 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_list_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_create_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_create_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_policies_get_count_608a 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_policies_get_count_608a --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_delete_policies --json
ParameterTypeRequiredDescription
conditional_access_policy_id string yes Path parameter `conditionalAccessPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_policies --json
ParameterTypeRequiredDescription
conditional_access_policy_id string yes Path parameter `conditionalAccessPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_update_policies --json
ParameterTypeRequiredDescription
conditional_access_policy_id string yes Path parameter `conditionalAccessPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_policies_conditional_access_policy_restore 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_policies_conditional_access_policy_restore --json
ParameterTypeRequiredDescription
conditional_access_policy_id string yes Path parameter `conditionalAccessPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_list_templates 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_list_templates --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_templates_get_count_a96d 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_templates_get_count_a96d --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_templates 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_conditional_access_get_templates --json
ParameterTypeRequiredDescription
conditional_access_template_id string yes Path parameter `conditionalAccessTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_identity_governance_get_identity_governance 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_identity_governance_get_identity_governance --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_identity_governance_update_identity_governance 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_identity_governance_update_identity_governance --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_delete_access_reviews 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_delete_access_reviews --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_get_access_reviews 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_get_access_reviews --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_update_access_reviews 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_update_access_reviews --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_list_definitions 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_list_definitions --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_create_definitions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_create_definitions --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_get_count_6cbe 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_get_count_6cbe --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_filter_by_current_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_filter_by_current_user --json
ParameterTypeRequiredDescription
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_delete_definitions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_delete_definitions --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_get_definitions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_get_definitions --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_set_definitions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_set_definitions --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_list_instances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_list_instances --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_create_instances 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_create_instances --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_count_b022 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_count_b022 --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_filter_by_current_user 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_filter_by_current_user --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_delete_instances 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_delete_instances --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_get_instances 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_get_instances --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_update_instances 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_update_instances --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_accept_recommendations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_accept_recommendations --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_apply_decisions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_apply_decisions --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_batch_record_decisions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_batch_record_decisions --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_list_contacted_reviewers 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_list_contacted_reviewers --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_create_contacted_reviewers 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_create_contacted_reviewers --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_contacted_reviewers_get_count_fe5f 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_contacted_reviewers_get_count_fe5f --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_delete_contacted_reviewers 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_delete_contacted_reviewers --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
access_review_reviewer_id string yes Path parameter `accessReviewReviewer-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_contacted_reviewers 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_contacted_reviewers --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
access_review_reviewer_id string yes Path parameter `accessReviewReviewer-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_update_contacted_reviewers 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_update_contacted_reviewers --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
access_review_reviewer_id string yes Path parameter `accessReviewReviewer-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_list_decisions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_list_decisions --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_create_decisions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_create_decisions --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_decisions_get_count_c10a 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_decisions_get_count_c10a --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_decisions_filter_by_current_user 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_decisions_filter_by_current_user --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_delete_decisions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_delete_decisions --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
access_review_instance_decision_item_id string yes Path parameter `accessReviewInstanceDecisionItem-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_decisions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_decisions --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
access_review_instance_decision_item_id string yes Path parameter `accessReviewInstanceDecisionItem-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_update_decisions 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_update_decisions --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
access_review_instance_decision_item_id string yes Path parameter `accessReviewInstanceDecisionItem-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_reset_decisions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_reset_decisions --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_send_reminder 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_send_reminder --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_list_stages 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_list_stages --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_create_stages 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_create_stages --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_get_count_f2c5 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_get_count_f2c5 --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stages_filter_by_current_user 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stages_filter_by_current_user --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_delete_stages 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_delete_stages --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
access_review_stage_id string yes Path parameter `accessReviewStage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_stages 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_get_stages --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
access_review_stage_id string yes Path parameter `accessReviewStage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_update_stages 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_update_stages --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
access_review_stage_id string yes Path parameter `accessReviewStage-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_list_decisions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_list_decisions --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
access_review_stage_id string yes Path parameter `accessReviewStage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_create_decisions 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_create_decisions --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
access_review_stage_id string yes Path parameter `accessReviewStage-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_decisions_get_count_35e1 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_decisions_get_count_35e1 --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
access_review_stage_id string yes Path parameter `accessReviewStage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stages_access_review_stage_decisions_filter_by_current_user 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stages_access_review_stage_decisions_filter_by_current_user --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
access_review_stage_id string yes Path parameter `accessReviewStage-id`.
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_delete_decisions 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_delete_decisions --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
access_review_stage_id string yes Path parameter `accessReviewStage-id`.
access_review_instance_decision_item_id string yes Path parameter `accessReviewInstanceDecisionItem-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_get_decisions 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_get_decisions --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
access_review_stage_id string yes Path parameter `accessReviewStage-id`.
access_review_instance_decision_item_id string yes Path parameter `accessReviewInstanceDecisionItem-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_update_decisions 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_instances_stages_update_decisions --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
access_review_stage_id string yes Path parameter `accessReviewStage-id`.
access_review_instance_decision_item_id string yes Path parameter `accessReviewInstanceDecisionItem-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stages_access_review_stage_stop 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stages_access_review_stage_stop --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-id`.
access_review_stage_id string yes Path parameter `accessReviewStage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stop 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_instances_access_review_instance_stop --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-id`.
access_review_instance_id string yes Path parameter `accessReviewInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_stop 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_definitions_access_review_schedule_definition_stop --json
ParameterTypeRequiredDescription
access_review_schedule_definition_id string yes Path parameter `accessReviewScheduleDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_list_history_definitions 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_list_history_definitions --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_create_history_definitions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_create_history_definitions --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_get_count_6aff 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_get_count_6aff --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_delete_history_definitions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_delete_history_definitions --json
ParameterTypeRequiredDescription
access_review_history_definition_id string yes Path parameter `accessReviewHistoryDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_get_history_definitions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_get_history_definitions --json
ParameterTypeRequiredDescription
access_review_history_definition_id string yes Path parameter `accessReviewHistoryDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_update_history_definitions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_update_history_definitions --json
ParameterTypeRequiredDescription
access_review_history_definition_id string yes Path parameter `accessReviewHistoryDefinition-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_list_instances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_list_instances --json
ParameterTypeRequiredDescription
access_review_history_definition_id string yes Path parameter `accessReviewHistoryDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_create_instances 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_create_instances --json
ParameterTypeRequiredDescription
access_review_history_definition_id string yes Path parameter `accessReviewHistoryDefinition-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_instances_get_count_cbe7 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_instances_get_count_cbe7 --json
ParameterTypeRequiredDescription
access_review_history_definition_id string yes Path parameter `accessReviewHistoryDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_delete_instances 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_delete_instances --json
ParameterTypeRequiredDescription
access_review_history_definition_id string yes Path parameter `accessReviewHistoryDefinition-id`.
access_review_history_instance_id string yes Path parameter `accessReviewHistoryInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_get_instances 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_get_instances --json
ParameterTypeRequiredDescription
access_review_history_definition_id string yes Path parameter `accessReviewHistoryDefinition-id`.
access_review_history_instance_id string yes Path parameter `accessReviewHistoryInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_update_instances 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_update_instances --json
ParameterTypeRequiredDescription
access_review_history_definition_id string yes Path parameter `accessReviewHistoryDefinition-id`.
access_review_history_instance_id string yes Path parameter `accessReviewHistoryInstance-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_access_review_history_definition_instances_access_review_history_instance_generate_download_uri 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_access_reviews_history_definitions_access_review_history_definition_instances_access_review_history_instance_generate_download_uri --json
ParameterTypeRequiredDescription
access_review_history_definition_id string yes Path parameter `accessReviewHistoryDefinition-id`.
access_review_history_instance_id string yes Path parameter `accessReviewHistoryInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_delete_entitlement_management 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_delete_entitlement_management --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_get_entitlement_management 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_get_entitlement_management --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_update_entitlement_management 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_update_entitlement_management --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_access_package_assignment_approvals 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_access_package_assignment_approvals --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_access_package_assignment_approvals 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_access_package_assignment_approvals --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_get_count_ac9b 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_get_count_ac9b --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_filter_by_current_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_filter_by_current_user --json
ParameterTypeRequiredDescription
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_access_package_assignment_approvals 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_access_package_assignment_approvals --json
ParameterTypeRequiredDescription
approval_id string yes Path parameter `approval-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_access_package_assignment_approvals 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_access_package_assignment_approvals --json
ParameterTypeRequiredDescription
approval_id string yes Path parameter `approval-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_access_package_assignment_approvals 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_access_package_assignment_approvals --json
ParameterTypeRequiredDescription
approval_id string yes Path parameter `approval-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_list_stages 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_list_stages --json
ParameterTypeRequiredDescription
approval_id string yes Path parameter `approval-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_create_stages 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_create_stages --json
ParameterTypeRequiredDescription
approval_id string yes Path parameter `approval-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_stages_get_count_0bb2 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_stages_get_count_0bb2 --json
ParameterTypeRequiredDescription
approval_id string yes Path parameter `approval-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_delete_stages 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_delete_stages --json
ParameterTypeRequiredDescription
approval_id string yes Path parameter `approval-id`.
approval_stage_id string yes Path parameter `approvalStage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_get_stages 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_get_stages --json
ParameterTypeRequiredDescription
approval_id string yes Path parameter `approval-id`.
approval_stage_id string yes Path parameter `approvalStage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_update_stages 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_package_assignment_approvals_update_stages --json
ParameterTypeRequiredDescription
approval_id string yes Path parameter `approval-id`.
approval_stage_id string yes Path parameter `approvalStage-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_access_packages 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_access_packages --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_access_packages 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_access_packages --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_count_87ea 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_count_87ea --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_filter_by_current_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_filter_by_current_user --json
ParameterTypeRequiredDescription
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_access_packages 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_access_packages --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_access_packages 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_access_packages --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_access_packages 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_access_packages --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_access_packages_incompatible_with 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_access_packages_incompatible_with --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_packages_incompatible_with_get_count_2183 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_packages_incompatible_with_get_count_2183 --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_access_packages_incompatible_with 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_access_packages_incompatible_with --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_id1 string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_assignment_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_assignment_policies --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_assignment_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_assignment_policies --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_count_96f1 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_count_96f1 --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_assignment_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_assignment_policies --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_assignment_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_assignment_policies --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_update_assignment_policies 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_update_assignment_policies --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_access_package 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_access_package --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_catalog 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_catalog --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_list_custom_extension_stage_settings 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_list_custom_extension_stage_settings --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_create_custom_extension_stage_settings 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_create_custom_extension_stage_settings --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_custom_extension_stage_settings_get_count_a366 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_custom_extension_stage_settings_get_count_a366 --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_delete_custom_extension_stage_settings 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_delete_custom_extension_stage_settings --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-id`.
custom_extension_stage_setting_id string yes Path parameter `customExtensionStageSetting-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_custom_extension_stage_settings 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_custom_extension_stage_settings --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-id`.
custom_extension_stage_setting_id string yes Path parameter `customExtensionStageSetting-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_update_custom_extension_stage_settings 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_update_custom_extension_stage_settings --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-id`.
custom_extension_stage_setting_id string yes Path parameter `customExtensionStageSetting-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_custom_extension_stage_settings_get_custom_extension 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_custom_extension_stage_settings_get_custom_extension --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-id`.
custom_extension_stage_setting_id string yes Path parameter `customExtensionStageSetting-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_list_questions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_list_questions --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_create_questions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_create_questions --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_questions_get_count_00ce 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_questions_get_count_00ce --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_delete_questions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_delete_questions --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-id`.
access_package_question_id string yes Path parameter `accessPackageQuestion-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_questions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_get_questions --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-id`.
access_package_question_id string yes Path parameter `accessPackageQuestion-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_update_questions 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_assignment_policies_update_questions --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-id`.
access_package_question_id string yes Path parameter `accessPackageQuestion-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_catalog 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_catalog --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_get_applicable_policy_requirements 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_get_applicable_policy_requirements --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_incompatible_access_packages 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_incompatible_access_packages --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_access_packages_get_count_c2c1 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_access_packages_get_count_c2c1 --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_ref_incompatible_access_packages 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_ref_incompatible_access_packages --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_ref_incompatible_access_packages 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_ref_incompatible_access_packages --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_ref_incompatible_access_packages 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_ref_incompatible_access_packages --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_access_packages_delete_ref_access_package 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_access_packages_delete_ref_access_package --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_id1 string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_incompatible_groups 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_incompatible_groups --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_get_count_30b4 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_get_count_30b4 --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_ref_incompatible_groups 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_ref_incompatible_groups --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_ref_incompatible_groups 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_ref_incompatible_groups --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_ref_incompatible_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_ref_incompatible_groups --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_delete_ref_group 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_delete_ref_group --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_list_service_provisioning_errors 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_service_provisioning_errors_get_count_072a 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_incompatible_groups_service_provisioning_errors_get_count_072a --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
group_id string yes Path parameter `group-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_resource_role_scopes 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_list_resource_role_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_resource_role_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_create_resource_role_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_get_count_aec9 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_get_count_aec9 --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_resource_role_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_delete_resource_role_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_resource_role_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_get_resource_role_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_update_resource_role_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_update_resource_role_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_delete_role 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_delete_role --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_get_role 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_get_role --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_update_role 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_update_role --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_delete_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_delete_resource --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_get_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_get_resource --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_update_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_update_resource --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_get_environment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_role_resource_refresh 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_role_resource_refresh --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_list_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_list_roles --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_create_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_create_roles --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_roles_get_count_43af 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_roles_get_count_43af --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_delete_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_delete_roles --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_get_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_get_roles --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_update_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_update_roles --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_list_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_list_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_create_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_create_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_get_count_a183 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_get_count_a183 --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_delete_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_delete_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_get_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_get_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_update_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_update_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_delete_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_delete_resource --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_get_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_get_resource --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_update_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_update_resource --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_get_environment 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_role_resource_scopes_access_package_resource_scope_resource_refresh 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_role_resource_scopes_access_package_resource_scope_resource_refresh --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_list_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_list_roles --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_create_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_create_roles --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_roles_get_count_29b9 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_roles_get_count_29b9 --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_delete_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_delete_roles --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_get_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_get_roles --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_update_roles 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_role_resource_scopes_resource_update_roles --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_delete_scope 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_delete_scope --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_get_scope 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_get_scope --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_update_scope 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_update_scope --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_delete_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_delete_resource --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_get_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_get_resource --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_update_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_update_resource --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_get_environment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_scope_resource_refresh 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_scope_resource_refresh --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_list_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_list_roles --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_create_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_create_roles --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_get_count_e406 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_get_count_e406 --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_delete_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_delete_roles --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_get_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_get_roles --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_update_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_update_roles --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_delete_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_delete_resource --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_get_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_get_resource --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_update_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_update_resource --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_get_environment 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_scope_resource_roles_access_package_resource_role_resource_refresh 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_access_package_resource_role_scopes_access_package_resource_role_scope_scope_resource_roles_access_package_resource_role_resource_refresh --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_list_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_list_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_create_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_create_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_scopes_get_count_85f9 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_scopes_get_count_85f9 --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_delete_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_delete_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_get_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_get_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_update_scopes 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_roles_resource_update_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_list_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_list_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_create_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_create_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_scopes_get_count_441e 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_scopes_get_count_441e --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_delete_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_delete_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_get_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_get_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_update_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_access_packages_resource_role_scopes_scope_resource_update_scopes --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackage-id`.
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_assignment_policies 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_assignment_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_assignment_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_assignment_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_count_7f35 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_count_7f35 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_assignment_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_assignment_policies --json
ParameterTypeRequiredDescription
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_assignment_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_assignment_policies --json
ParameterTypeRequiredDescription
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_set_assignment_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_set_assignment_policies --json
ParameterTypeRequiredDescription
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_access_package 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_access_package --json
ParameterTypeRequiredDescription
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_catalog 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_catalog --json
ParameterTypeRequiredDescription
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_list_custom_extension_stage_settings 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_list_custom_extension_stage_settings --json
ParameterTypeRequiredDescription
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_create_custom_extension_stage_settings 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_create_custom_extension_stage_settings --json
ParameterTypeRequiredDescription
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_custom_extension_stage_settings_get_count_551d 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_custom_extension_stage_settings_get_count_551d --json
ParameterTypeRequiredDescription
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_delete_custom_extension_stage_settings 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_delete_custom_extension_stage_settings --json
ParameterTypeRequiredDescription
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-id`.
custom_extension_stage_setting_id string yes Path parameter `customExtensionStageSetting-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_custom_extension_stage_settings 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_custom_extension_stage_settings --json
ParameterTypeRequiredDescription
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-id`.
custom_extension_stage_setting_id string yes Path parameter `customExtensionStageSetting-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_update_custom_extension_stage_settings 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_update_custom_extension_stage_settings --json
ParameterTypeRequiredDescription
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-id`.
custom_extension_stage_setting_id string yes Path parameter `customExtensionStageSetting-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_custom_extension_stage_settings_get_custom_extension 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_custom_extension_stage_settings_get_custom_extension --json
ParameterTypeRequiredDescription
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-id`.
custom_extension_stage_setting_id string yes Path parameter `customExtensionStageSetting-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_list_questions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_list_questions --json
ParameterTypeRequiredDescription
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_create_questions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_create_questions --json
ParameterTypeRequiredDescription
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_questions_get_count_ce3b 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_questions_get_count_ce3b --json
ParameterTypeRequiredDescription
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_delete_questions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_delete_questions --json
ParameterTypeRequiredDescription
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-id`.
access_package_question_id string yes Path parameter `accessPackageQuestion-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_questions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_get_questions --json
ParameterTypeRequiredDescription
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-id`.
access_package_question_id string yes Path parameter `accessPackageQuestion-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_update_questions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_policies_update_questions --json
ParameterTypeRequiredDescription
access_package_assignment_policy_id string yes Path parameter `accessPackageAssignmentPolicy-id`.
access_package_question_id string yes Path parameter `accessPackageQuestion-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_assignment_requests 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_assignment_requests --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_assignment_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_assignment_requests --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_count_e1cf 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_count_e1cf --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_filter_by_current_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_filter_by_current_user --json
ParameterTypeRequiredDescription
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_assignment_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_assignment_requests --json
ParameterTypeRequiredDescription
access_package_assignment_request_id string yes Path parameter `accessPackageAssignmentRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_assignment_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_assignment_requests --json
ParameterTypeRequiredDescription
access_package_assignment_request_id string yes Path parameter `accessPackageAssignmentRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_assignment_requests 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_assignment_requests --json
ParameterTypeRequiredDescription
access_package_assignment_request_id string yes Path parameter `accessPackageAssignmentRequest-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_access_package 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_access_package --json
ParameterTypeRequiredDescription
access_package_assignment_request_id string yes Path parameter `accessPackageAssignmentRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_assignment 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_assignment --json
ParameterTypeRequiredDescription
access_package_assignment_request_id string yes Path parameter `accessPackageAssignmentRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_access_package_assignment_request_cancel 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_access_package_assignment_request_cancel --json
ParameterTypeRequiredDescription
access_package_assignment_request_id string yes Path parameter `accessPackageAssignmentRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_access_package_assignment_request_reprocess 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_access_package_assignment_request_reprocess --json
ParameterTypeRequiredDescription
access_package_assignment_request_id string yes Path parameter `accessPackageAssignmentRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_requestor 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_get_requestor --json
ParameterTypeRequiredDescription
access_package_assignment_request_id string yes Path parameter `accessPackageAssignmentRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_access_package_assignment_request_resume 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignment_requests_access_package_assignment_request_resume --json
ParameterTypeRequiredDescription
access_package_assignment_request_id string yes Path parameter `accessPackageAssignmentRequest-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_assignments 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_assignments --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_assignments 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_assignments --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_get_count_bb79 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_get_count_bb79 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_additional_access_894c 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_additional_access_894c --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_additional_access_9b62 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_additional_access_9b62 --json
ParameterTypeRequiredDescription
access_package_id string yes Path parameter `accessPackageId`.
incompatible_access_package_id string yes Path parameter `incompatibleAccessPackageId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_filter_by_current_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_filter_by_current_user --json
ParameterTypeRequiredDescription
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_assignments 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_assignments --json
ParameterTypeRequiredDescription
access_package_assignment_id string yes Path parameter `accessPackageAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_assignments 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_assignments --json
ParameterTypeRequiredDescription
access_package_assignment_id string yes Path parameter `accessPackageAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_assignments 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_assignments --json
ParameterTypeRequiredDescription
access_package_assignment_id string yes Path parameter `accessPackageAssignment-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_get_access_package 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_get_access_package --json
ParameterTypeRequiredDescription
access_package_assignment_id string yes Path parameter `accessPackageAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_get_assignment_policy 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_get_assignment_policy --json
ParameterTypeRequiredDescription
access_package_assignment_id string yes Path parameter `accessPackageAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_access_package_assignment_reprocess 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_access_package_assignment_reprocess --json
ParameterTypeRequiredDescription
access_package_assignment_id string yes Path parameter `accessPackageAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_get_target 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_assignments_get_target --json
ParameterTypeRequiredDescription
access_package_assignment_id string yes Path parameter `accessPackageAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_catalogs 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_catalogs --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_catalogs 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_catalogs --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_count_ec42 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_count_ec42 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_catalogs 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_catalogs --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_catalogs 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_catalogs --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_catalogs 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_catalogs --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_access_packages 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_access_packages --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_packages_get_count_d253 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_packages_get_count_d253 --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_access_packages 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_access_packages --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_custom_workflow_extensions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_custom_workflow_extensions --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_custom_workflow_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_custom_workflow_extensions --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_custom_workflow_extensions_get_count_dc25 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_custom_workflow_extensions_get_count_dc25 --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_custom_workflow_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_custom_workflow_extensions --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
custom_callout_extension_id string yes Path parameter `customCalloutExtension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_custom_workflow_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_custom_workflow_extensions --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
custom_callout_extension_id string yes Path parameter `customCalloutExtension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_custom_workflow_extensions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_custom_workflow_extensions --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
custom_callout_extension_id string yes Path parameter `customCalloutExtension-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_resource_roles 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_resource_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_resource_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_resource_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_get_count_0b89 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_get_count_0b89 --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_resource_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_resource_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_resource_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_resource_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_resource_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_resource_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_delete_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_delete_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_get_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_get_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_update_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_update_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_get_environment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_roles_access_package_resource_role_resource_refresh 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_roles_access_package_resource_role_resource_refresh --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_list_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_list_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_create_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_create_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_roles_get_count_caee 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_roles_get_count_caee --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_delete_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_delete_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_role_id1 string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_get_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_get_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_role_id1 string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_update_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_update_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_role_id1 string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_list_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_list_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_create_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_create_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_get_count_0bb0 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_get_count_0bb0 --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_delete_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_delete_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_get_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_get_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_update_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_update_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_delete_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_delete_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_get_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_get_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_update_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_update_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_get_environment 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_list_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_list_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_create_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_create_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_roles_get_count_d5ce 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_roles_get_count_d5ce --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_delete_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_delete_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id1 string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_get_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_get_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id1 string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_update_roles 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_roles_resource_scopes_resource_update_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id1 string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_resource_scopes 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_resource_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_resource_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_resource_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_get_count_41be 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_get_count_41be --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_resource_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_resource_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_resource_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_resource_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_resource_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_resource_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_delete_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_delete_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_get_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_get_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_update_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_update_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_get_environment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_scopes_access_package_resource_scope_resource_refresh 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_scopes_access_package_resource_scope_resource_refresh --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_list_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_list_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_create_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_create_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_get_count_61e2 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_get_count_61e2 --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_delete_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_delete_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_get_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_get_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_update_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_update_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_delete_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_delete_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_get_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_get_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_update_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_update_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_get_environment 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_list_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_list_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_create_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_create_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_scopes_get_count_d233 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_scopes_get_count_d233 --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_delete_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_delete_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id1 string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_get_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_get_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id1 string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_update_scopes 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_roles_resource_update_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id1 string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_list_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_list_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_create_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_create_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_scopes_get_count_8843 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_scopes_get_count_8843 --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_delete_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_delete_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_scope_id1 string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_get_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_get_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_scope_id1 string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_update_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resource_scopes_resource_update_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_scope_id1 string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_resources 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_list_resources --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_resources 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_create_resources --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_count_d7cc 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_count_d7cc --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_resources 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_delete_resources --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_resources 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_get_resources --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_resources 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_update_resources --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_environment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_environment --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_refresh 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_refresh --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_list_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_list_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_create_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_create_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_get_count_09f2 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_get_count_09f2 --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_delete_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_delete_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_update_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_update_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_delete_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_delete_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_get_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_get_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_update_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_update_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_get_environment 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_refresh 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_refresh --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_list_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_list_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_create_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_create_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_get_count_d8a6 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_get_count_d8a6 --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_delete_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_delete_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_get_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_get_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_update_scopes 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_update_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_delete_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_delete_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_get_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_get_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_update_resource 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_update_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_resource_get_environment 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_roles_resource_scopes_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_list_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_list_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_create_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_create_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_get_count_da5f 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_get_count_da5f --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_delete_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_delete_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_get_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_update_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_update_scopes --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_delete_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_delete_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_get_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_get_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_update_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_update_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_get_environment 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_list_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_list_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_create_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_create_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_get_count_8e7a 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_get_count_8e7a --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_delete_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_delete_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_get_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_get_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_update_roles 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_update_roles --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_delete_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_delete_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_get_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_get_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_update_resource 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_update_resource --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_resource_get_environment 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_resources_scopes_resource_roles_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_catalogs_access_package_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh --json
ParameterTypeRequiredDescription
access_package_catalog_id string yes Path parameter `accessPackageCatalog-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_connected_organizations 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_connected_organizations --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_connected_organizations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_connected_organizations --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_get_count_03a9 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_get_count_03a9 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_connected_organizations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_connected_organizations --json
ParameterTypeRequiredDescription
connected_organization_id string yes Path parameter `connectedOrganization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_connected_organizations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_connected_organizations --json
ParameterTypeRequiredDescription
connected_organization_id string yes Path parameter `connectedOrganization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_connected_organizations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_connected_organizations --json
ParameterTypeRequiredDescription
connected_organization_id string yes Path parameter `connectedOrganization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_external_sponsors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_external_sponsors --json
ParameterTypeRequiredDescription
connected_organization_id string yes Path parameter `connectedOrganization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_external_sponsors_get_count_3513 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_external_sponsors_get_count_3513 --json
ParameterTypeRequiredDescription
connected_organization_id string yes Path parameter `connectedOrganization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_delete_ref_external_sponsors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_delete_ref_external_sponsors --json
ParameterTypeRequiredDescription
connected_organization_id string yes Path parameter `connectedOrganization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_ref_external_sponsors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_ref_external_sponsors --json
ParameterTypeRequiredDescription
connected_organization_id string yes Path parameter `connectedOrganization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_create_ref_external_sponsors 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_create_ref_external_sponsors --json
ParameterTypeRequiredDescription
connected_organization_id string yes Path parameter `connectedOrganization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_external_sponsors_delete_ref_directory_object 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_external_sponsors_delete_ref_directory_object --json
ParameterTypeRequiredDescription
connected_organization_id string yes Path parameter `connectedOrganization-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_internal_sponsors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_internal_sponsors --json
ParameterTypeRequiredDescription
connected_organization_id string yes Path parameter `connectedOrganization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_internal_sponsors_get_count_7123 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_internal_sponsors_get_count_7123 --json
ParameterTypeRequiredDescription
connected_organization_id string yes Path parameter `connectedOrganization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_delete_ref_internal_sponsors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_delete_ref_internal_sponsors --json
ParameterTypeRequiredDescription
connected_organization_id string yes Path parameter `connectedOrganization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_ref_internal_sponsors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_list_ref_internal_sponsors --json
ParameterTypeRequiredDescription
connected_organization_id string yes Path parameter `connectedOrganization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_create_ref_internal_sponsors 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_create_ref_internal_sponsors --json
ParameterTypeRequiredDescription
connected_organization_id string yes Path parameter `connectedOrganization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_internal_sponsors_delete_ref_directory_object 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_connected_organizations_internal_sponsors_delete_ref_directory_object --json
ParameterTypeRequiredDescription
connected_organization_id string yes Path parameter `connectedOrganization-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_resource_environments 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_resource_environments --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_resource_environments 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_resource_environments --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_get_count_6cd7 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_get_count_6cd7 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_resource_environments 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_resource_environments --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_resource_environments 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_resource_environments --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_resource_environments 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_resource_environments --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_list_resources 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_list_resources --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_create_resources 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_create_resources --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_count_a39d 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_count_a39d --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_delete_resources 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_delete_resources --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_get_resources 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_get_resources --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_update_resources 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_update_resources --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_environment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_refresh 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_list_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_list_roles --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_create_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_create_roles --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_get_count_c688 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_get_count_c688 --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_delete_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_delete_roles --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_roles --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_update_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_update_roles --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_delete_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_get_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_update_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_get_environment 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_roles_access_package_resource_role_resource_refresh 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_roles_access_package_resource_role_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_list_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_list_scopes --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_create_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_create_scopes --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_get_count_c193 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_get_count_c193 --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_delete_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_delete_scopes --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_get_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_get_scopes --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_update_scopes 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_update_scopes --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_delete_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_get_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_update_resource 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_resource_get_environment 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_roles_resource_scopes_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_list_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_list_scopes --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_create_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_create_scopes --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_get_count_a9d8 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_get_count_a9d8 --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_delete_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_delete_scopes --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_get_scopes --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_update_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_update_scopes --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_delete_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_get_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_update_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_get_environment 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_list_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_list_roles --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_create_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_create_roles --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_get_count_aef4 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_get_count_aef4 --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_delete_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_delete_roles --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_get_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_get_roles --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_update_roles 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_update_roles --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_delete_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_get_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_update_resource 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_resource_get_environment 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_resources_scopes_resource_roles_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_environments_access_package_resource_environment_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_environment_id string yes Path parameter `accessPackageResourceEnvironment-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_resource_requests 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_resource_requests --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_resource_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_resource_requests --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_get_count_c3aa 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_get_count_c3aa --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_resource_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_resource_requests --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_resource_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_resource_requests --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_resource_requests 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_resource_requests --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_delete_catalog 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_delete_catalog --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_get_catalog 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_get_catalog --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_update_catalog 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_update_catalog --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_access_packages 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_access_packages --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_access_packages_get_count_c982 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_access_packages_get_count_c982 --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_access_packages 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_access_packages --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_id string yes Path parameter `accessPackage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_custom_workflow_extensions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_custom_workflow_extensions --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_custom_workflow_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_custom_workflow_extensions --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_custom_workflow_extensions_get_count_a166 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_custom_workflow_extensions_get_count_a166 --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_custom_workflow_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_custom_workflow_extensions --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
custom_callout_extension_id string yes Path parameter `customCalloutExtension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_custom_workflow_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_custom_workflow_extensions --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
custom_callout_extension_id string yes Path parameter `customCalloutExtension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_custom_workflow_extensions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_custom_workflow_extensions --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
custom_callout_extension_id string yes Path parameter `customCalloutExtension-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_resource_roles 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_resource_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_resource_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_resource_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_get_count_416b 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_get_count_416b --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_resource_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_resource_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_resource_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_resource_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_resource_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_resource_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_delete_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_get_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_update_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_get_environment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_roles_access_package_resource_role_resource_refresh 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_roles_access_package_resource_role_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_list_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_list_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_create_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_create_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_roles_get_count_ae6c 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_roles_get_count_ae6c --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_delete_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_delete_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_role_id1 string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_get_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_get_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_role_id1 string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_update_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_update_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_role_id1 string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_list_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_list_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_create_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_create_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_get_count_d694 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_get_count_d694 --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_delete_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_delete_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_get_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_get_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_update_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_update_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_delete_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_get_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_update_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_get_environment 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_list_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_list_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_create_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_create_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_roles_get_count_931a 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_roles_get_count_931a --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_delete_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_delete_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id1 string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_get_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_get_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id1 string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_update_roles 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_roles_resource_scopes_resource_update_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id1 string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_resource_scopes 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_resource_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_resource_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_resource_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_get_count_7b8f 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_get_count_7b8f --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_resource_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_resource_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_resource_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_resource_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_resource_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_resource_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_delete_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_get_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_update_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_get_environment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_scopes_access_package_resource_scope_resource_refresh 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_scopes_access_package_resource_scope_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_list_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_list_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_create_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_create_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_get_count_2f61 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_get_count_2f61 --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_delete_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_delete_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_get_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_get_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_update_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_update_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_delete_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_get_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_update_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_get_environment 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_list_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_list_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_create_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_create_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_scopes_get_count_80a5 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_scopes_get_count_80a5 --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_delete_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_delete_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id1 string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_get_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_get_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id1 string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_update_scopes 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_roles_resource_update_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id1 string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_list_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_list_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_create_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_create_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_scopes_get_count_ce55 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_scopes_get_count_ce55 --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_delete_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_delete_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_scope_id1 string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_get_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_get_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_scope_id1 string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_update_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resource_scopes_resource_update_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_scope_id1 string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_resources 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_list_resources --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_resources 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_create_resources --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_count_10ad 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_count_10ad --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_resources 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_delete_resources --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_resources 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_get_resources --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_resources 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_update_resources --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_environment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_refresh 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_list_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_list_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_create_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_create_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_get_count_061e 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_get_count_061e --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_delete_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_delete_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_update_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_update_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_delete_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_get_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_update_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_get_environment 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_refresh 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_list_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_list_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_create_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_create_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_get_count_64b6 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_get_count_64b6 --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_delete_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_delete_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_get_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_get_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_update_scopes 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_update_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_delete_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_get_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_update_resource 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_resource_get_environment 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_roles_resource_scopes_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_list_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_list_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_create_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_create_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_get_count_26fa 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_get_count_26fa --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_delete_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_delete_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_get_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_update_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_update_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_delete_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_get_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_update_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_get_environment 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_list_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_list_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_create_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_create_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_get_count_2e6d 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_get_count_2e6d --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_delete_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_delete_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_get_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_get_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_update_roles 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_update_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_delete_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_get_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_update_resource 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_resource_get_environment 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_catalog_resources_scopes_resource_roles_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_catalog_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_delete_resource 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_get_resource 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_update_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_get_environment 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_refresh 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_list_roles 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_list_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_create_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_create_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_get_count_ca1d 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_get_count_ca1d --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_delete_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_delete_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_get_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_get_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_update_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_update_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_delete_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_get_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_update_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_get_environment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_roles_access_package_resource_role_resource_refresh 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_roles_access_package_resource_role_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_list_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_list_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_create_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_create_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_get_count_ee56 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_get_count_ee56 --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_delete_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_delete_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_get_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_get_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_update_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_update_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_delete_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_get_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_update_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_resource_get_environment 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_roles_resource_scopes_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_list_scopes 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_list_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_create_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_create_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_get_count_ebee 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_get_count_ebee --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_delete_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_delete_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_get_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_get_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_update_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_update_scopes --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_delete_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_get_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_update_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_get_environment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_scopes_access_package_resource_scope_resource_refresh 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_scopes_access_package_resource_scope_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_list_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_list_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_create_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_create_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_get_count_94bf 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_get_count_94bf --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_delete_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_delete_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_get_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_get_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_update_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_update_roles --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_delete_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_get_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_update_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_resource_get_environment 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_resource_scopes_resource_roles_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_requests_access_package_resource_request_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_request_id string yes Path parameter `accessPackageResourceRequest-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_resource_role_scopes 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_resource_role_scopes --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_resource_role_scopes 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_resource_role_scopes --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_get_count_dadb 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_get_count_dadb --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_resource_role_scopes 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_resource_role_scopes --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_resource_role_scopes 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_resource_role_scopes --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_resource_role_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_resource_role_scopes --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_delete_role 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_delete_role --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_get_role 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_get_role --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_update_role 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_update_role --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_delete_resource 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_get_resource 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_update_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_get_environment 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_role_resource_refresh 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_role_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_list_roles 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_list_roles --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_create_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_create_roles --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_roles_get_count_f86a 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_roles_get_count_f86a --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_delete_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_delete_roles --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_get_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_get_roles --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_update_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_update_roles --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_list_scopes 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_list_scopes --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_create_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_create_scopes --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_get_count_2739 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_get_count_2739 --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_delete_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_delete_scopes --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_get_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_get_scopes --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_update_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_update_scopes --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_delete_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_get_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_update_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_get_environment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_role_resource_scopes_access_package_resource_scope_resource_refresh 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_role_resource_scopes_access_package_resource_scope_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_list_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_list_roles --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_create_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_create_roles --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_roles_get_count_d2bb 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_roles_get_count_d2bb --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_delete_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_delete_roles --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_get_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_get_roles --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_update_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_role_resource_scopes_resource_update_roles --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_delete_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_delete_scope --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_get_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_get_scope --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_update_scope 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_update_scope --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_delete_resource 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_get_resource 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_update_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_get_environment 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_scope_resource_refresh 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_scope_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_list_roles 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_list_roles --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_create_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_create_roles --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_get_count_d421 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_get_count_d421 --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_delete_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_delete_roles --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_get_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_get_roles --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_update_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_update_roles --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_delete_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_get_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_update_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_get_environment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_scope_resource_roles_access_package_resource_role_resource_refresh 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_access_package_resource_role_scope_scope_resource_roles_access_package_resource_role_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_list_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_list_scopes --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_create_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_create_scopes --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_scopes_get_count_37e6 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_scopes_get_count_37e6 --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_delete_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_delete_scopes --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_get_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_get_scopes --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_update_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_roles_resource_update_scopes --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_list_scopes 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_list_scopes --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_create_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_create_scopes --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_scopes_get_count_7447 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_scopes_get_count_7447 --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_delete_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_delete_scopes --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_get_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_get_scopes --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_update_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resource_role_scopes_scope_resource_update_scopes --json
ParameterTypeRequiredDescription
access_package_resource_role_scope_id string yes Path parameter `accessPackageResourceRoleScope-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_resources 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_list_resources --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_resources 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_create_resources --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_get_count_c197 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_get_count_c197 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_resources 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_delete_resources --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_resources 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_get_resources --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_resources 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_update_resources --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_get_environment 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_refresh 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_list_roles 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_list_roles --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_create_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_create_roles --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_get_count_0757 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_get_count_0757 --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_delete_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_delete_roles --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_get_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_get_roles --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_update_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_update_roles --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_delete_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_get_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_update_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_get_environment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_roles_access_package_resource_role_resource_refresh 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_roles_access_package_resource_role_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_list_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_list_scopes --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_create_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_create_scopes --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_get_count_a8f2 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_get_count_a8f2 --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_delete_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_delete_scopes --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_get_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_get_scopes --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_update_scopes 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_update_scopes --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_delete_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_get_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_update_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_resource_get_environment 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_roles_resource_scopes_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_roles_access_package_resource_role_resource_scopes_access_package_resource_scope_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_list_scopes 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_list_scopes --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_create_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_create_scopes --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_get_count_d1a9 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_get_count_d1a9 --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_delete_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_delete_scopes --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_get_scopes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_get_scopes --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_update_scopes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_update_scopes --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_delete_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_get_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_update_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_get_environment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_scopes_access_package_resource_scope_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_list_roles 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_list_roles --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_create_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_create_roles --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_get_count_5bb2 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_get_count_5bb2 --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_delete_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_delete_roles --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_get_roles 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_get_roles --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_update_roles 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_update_roles --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_delete_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_delete_resource --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_get_resource 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_get_resource --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_update_resource 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_update_resource --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_resource_get_environment 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_scopes_resource_roles_resource_get_environment --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_entitlement_management_resources_access_package_resource_scopes_access_package_resource_scope_resource_roles_access_package_resource_role_resource_refresh --json
ParameterTypeRequiredDescription
access_package_resource_id string yes Path parameter `accessPackageResource-id`.
access_package_resource_scope_id string yes Path parameter `accessPackageResourceScope-id`.
access_package_resource_role_id string yes Path parameter `accessPackageResourceRole-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_delete_lifecycle_workflows 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_delete_lifecycle_workflows --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_get_lifecycle_workflows 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_get_lifecycle_workflows --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_update_lifecycle_workflows 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_update_lifecycle_workflows --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_list_custom_task_extensions 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_list_custom_task_extensions --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_create_custom_task_extensions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_create_custom_task_extensions --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_get_count_b240 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_get_count_b240 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_delete_custom_task_extensions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_delete_custom_task_extensions --json
ParameterTypeRequiredDescription
custom_task_extension_id string yes Path parameter `customTaskExtension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_custom_task_extensions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_custom_task_extensions --json
ParameterTypeRequiredDescription
custom_task_extension_id string yes Path parameter `customTaskExtension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_update_custom_task_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_update_custom_task_extensions --json
ParameterTypeRequiredDescription
custom_task_extension_id string yes Path parameter `customTaskExtension-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_get_created_by 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_get_created_by --json
ParameterTypeRequiredDescription
custom_task_extension_id string yes Path parameter `customTaskExtension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_created_by_list_service_provisioning_errors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_created_by_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
custom_task_extension_id string yes Path parameter `customTaskExtension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_created_by_service_provisioning_errors_get_count_74e6 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_created_by_service_provisioning_errors_get_count_74e6 --json
ParameterTypeRequiredDescription
custom_task_extension_id string yes Path parameter `customTaskExtension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_get_last_modified_by 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_get_last_modified_by --json
ParameterTypeRequiredDescription
custom_task_extension_id string yes Path parameter `customTaskExtension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_last_modified_by_list_service_provisioning_errors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_last_modified_by_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
custom_task_extension_id string yes Path parameter `customTaskExtension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_last_modified_by_service_provisioning_errors_get_count_8d38 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_custom_task_extensions_last_modified_by_service_provisioning_errors_get_count_8d38 --json
ParameterTypeRequiredDescription
custom_task_extension_id string yes Path parameter `customTaskExtension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_delete_deleted_items 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_delete_deleted_items --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_deleted_items 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_deleted_items --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_list_workflows 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_list_workflows --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_count_4207 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_count_4207 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_delete_workflows 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_delete_workflows --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_get_workflows 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_get_workflows --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_administration_scope_targets 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_administration_scope_targets --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_administration_scope_targets_get_count_9431 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_administration_scope_targets_get_count_9431 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_administration_scope_targets 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_administration_scope_targets --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_created_by 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_created_by --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_created_by_list_service_provisioning_errors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_created_by_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_created_by_service_provisioning_errors_get_count_1081 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_created_by_service_provisioning_errors_get_count_1081 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_execution_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_execution_scope --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_execution_scope_get_count_e524 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_execution_scope_get_count_e524 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_execution_scope 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_execution_scope --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_last_modified_by 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_last_modified_by --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_last_modified_by_list_service_provisioning_errors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_last_modified_by_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_last_modified_by_service_provisioning_errors_get_count_def1 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_last_modified_by_service_provisioning_errors_get_count_def1 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_activate 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_activate --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_activate_with_scope 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_activate_with_scope --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_create_new_version 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_create_new_version --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_restore 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_restore --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_runs 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_runs --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_count_04a6 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_count_04a6 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_summary 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_summary --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
start_date_time string yes Path parameter `startDateTime`.
end_date_time string yes Path parameter `endDateTime`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_runs 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_runs --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_list_reprocessed_runs 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_list_reprocessed_runs --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_reprocessed_runs_get_count_ec42 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_reprocessed_runs_get_count_ec42 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_reprocessed_runs 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_reprocessed_runs --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
run_id1 string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_list_task_processing_results 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_list_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_get_count_301f 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_get_count_301f --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_task_processing_results 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_run_task_processing_results_task_processing_result_resume 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_run_task_processing_results_task_processing_result_resume --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_get_subject 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_get_subject --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_subject_list_service_provisioning_errors 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_subject_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_subject_service_provisioning_errors_get_count_9c1a 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_subject_service_provisioning_errors_get_count_9c1a --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_get_task 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_task_processing_results_get_task --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_list_user_processing_results 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_list_user_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_count_ea74 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_count_ea74 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_run_user_processing_results_summary 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_run_user_processing_results_summary --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
start_date_time string yes Path parameter `startDateTime`.
end_date_time string yes Path parameter `endDateTime`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_user_processing_results 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_get_user_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_list_reprocessed_runs 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_list_reprocessed_runs --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_reprocessed_runs_get_count_e3b6 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_reprocessed_runs_get_count_e3b6 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_reprocessed_runs 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_reprocessed_runs --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
run_id1 string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_subject 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_subject --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_subject_list_service_provisioning_errors 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_subject_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_subject_service_provisioning_errors_get_count_46e1 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_subject_service_provisioning_errors_get_count_46e1 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_list_task_processing_results 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_list_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_get_count_f799 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_get_count_f799 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_task_processing_results 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_get_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_run_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_runs_run_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_get_subject 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_get_subject --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_subject_list_service_provisioning_errors 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_subject_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_7f1d 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_7f1d --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_get_task 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_runs_user_processing_results_task_processing_results_get_task --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_task_reports 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_task_reports --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_count_f9a3 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_count_f9a3 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_task_reports_summary 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_task_reports_summary --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
start_date_time string yes Path parameter `startDateTime`.
end_date_time string yes Path parameter `endDateTime`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_task_reports 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_task_reports --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_task 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_task --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_task_definition 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_task_definition --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_list_task_processing_results 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_list_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_get_count_7b4b 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_get_count_7b4b --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_task_processing_results 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_get_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_task_reports_task_report_task_processing_results_task_processing_result_resume 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_task_reports_task_report_task_processing_results_task_processing_result_resume --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_get_subject 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_get_subject --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_subject_list_service_provisioning_errors 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_subject_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_subject_service_provisioning_errors_get_count_4e4d 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_subject_service_provisioning_errors_get_count_4e4d --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_get_task 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_task_reports_task_processing_results_get_task --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_tasks 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_create_tasks 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_create_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_get_count_67b2 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_get_count_67b2 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_delete_tasks 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_delete_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_tasks 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_update_tasks 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_update_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_list_task_processing_results 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_list_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_get_count_3d21 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_get_count_3d21 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_get_task_processing_results 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_get_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_tasks_task_task_processing_results_task_processing_result_resume 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_tasks_task_task_processing_results_task_processing_result_resume --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_get_subject 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_get_subject --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_subject_list_service_provisioning_errors 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_subject_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_subject_service_provisioning_errors_get_count_43b9 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_subject_service_provisioning_errors_get_count_43b9 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_get_task 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_tasks_task_processing_results_get_task --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_user_processing_results 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_user_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_count_52b9 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_count_52b9 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_user_processing_results_summary 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_user_processing_results_summary --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
start_date_time string yes Path parameter `startDateTime`.
end_date_time string yes Path parameter `endDateTime`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_user_processing_results 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_user_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_list_reprocessed_runs 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_list_reprocessed_runs --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_reprocessed_runs_get_count_69e5 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_reprocessed_runs_get_count_69e5 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_reprocessed_runs 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_reprocessed_runs --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
run_id string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_subject 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_subject --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_subject_list_service_provisioning_errors 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_subject_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_subject_service_provisioning_errors_get_count_e5c8 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_subject_service_provisioning_errors_get_count_e5c8 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_list_task_processing_results 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_list_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_get_count_dca2 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_get_count_dca2 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_task_processing_results 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_get_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_get_subject 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_get_subject --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_subject_list_service_provisioning_errors 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_subject_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_2ac7 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_2ac7 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_get_task 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_user_processing_results_task_processing_results_get_task --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_versions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_list_versions --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_count_faf1 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_count_faf1 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_versions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_get_versions --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_list_administration_scope_targets 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_list_administration_scope_targets --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_administration_scope_targets_get_count_9c4d 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_administration_scope_targets_get_count_9c4d --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_administration_scope_targets 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_administration_scope_targets --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_created_by 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_created_by --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_created_by_list_service_provisioning_errors 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_created_by_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_created_by_service_provisioning_errors_get_count_91a7 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_created_by_service_provisioning_errors_get_count_91a7 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_last_modified_by 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_last_modified_by --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_last_modified_by_list_service_provisioning_errors 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_last_modified_by_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_last_modified_by_service_provisioning_errors_get_count_346a 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_last_modified_by_service_provisioning_errors_get_count_346a --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_list_tasks 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_list_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_create_tasks 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_create_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_get_count_901d 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_get_count_901d --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_delete_tasks 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_delete_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_tasks 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_get_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_update_tasks 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_update_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_list_task_processing_results 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_list_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_get_count_f65c 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_get_count_f65c --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_get_task_processing_results 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_get_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_versions_workflow_version_tasks_task_task_processing_results_task_processing_result_resume 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_workflow_versions_workflow_version_tasks_task_task_processing_results_task_processing_result_resume --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_get_subject 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_get_subject --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_subject_list_service_provisioning_errors 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_subject_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_subject_service_provisioning_errors_get_count_c887 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_subject_service_provisioning_errors_get_count_c887 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_get_task 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_deleted_items_workflows_versions_tasks_task_processing_results_get_task --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_list_task_definitions 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_list_task_definitions --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_task_definitions_get_count_36f9 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_task_definitions_get_count_36f9 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_task_definitions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_task_definitions --json
ParameterTypeRequiredDescription
task_definition_id string yes Path parameter `taskDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_list_workflow_templates 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_list_workflow_templates --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_get_count_7b73 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_get_count_7b73 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_workflow_templates 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_workflow_templates --json
ParameterTypeRequiredDescription
workflow_template_id string yes Path parameter `workflowTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_list_tasks 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_list_tasks --json
ParameterTypeRequiredDescription
workflow_template_id string yes Path parameter `workflowTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_get_count_d308 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_get_count_d308 --json
ParameterTypeRequiredDescription
workflow_template_id string yes Path parameter `workflowTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_get_tasks 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_get_tasks --json
ParameterTypeRequiredDescription
workflow_template_id string yes Path parameter `workflowTemplate-id`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_list_task_processing_results 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_list_task_processing_results --json
ParameterTypeRequiredDescription
workflow_template_id string yes Path parameter `workflowTemplate-id`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_get_count_7ad8 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_get_count_7ad8 --json
ParameterTypeRequiredDescription
workflow_template_id string yes Path parameter `workflowTemplate-id`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_get_task_processing_results 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_get_task_processing_results --json
ParameterTypeRequiredDescription
workflow_template_id string yes Path parameter `workflowTemplate-id`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_workflow_template_tasks_task_task_processing_results_task_processing_result_resume 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_workflow_template_tasks_task_task_processing_results_task_processing_result_resume --json
ParameterTypeRequiredDescription
workflow_template_id string yes Path parameter `workflowTemplate-id`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_get_subject 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_get_subject --json
ParameterTypeRequiredDescription
workflow_template_id string yes Path parameter `workflowTemplate-id`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_subject_list_service_provisioning_errors 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_subject_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_template_id string yes Path parameter `workflowTemplate-id`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_subject_service_provisioning_errors_get_count_c373 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_subject_service_provisioning_errors_get_count_c373 --json
ParameterTypeRequiredDescription
workflow_template_id string yes Path parameter `workflowTemplate-id`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_get_task 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflow_templates_tasks_task_processing_results_get_task --json
ParameterTypeRequiredDescription
workflow_template_id string yes Path parameter `workflowTemplate-id`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_list_workflows 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_list_workflows --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_create_workflows 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_create_workflows --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_count_02c2 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_count_02c2 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_delete_workflows 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_delete_workflows --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_workflows 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_get_workflows --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_update_workflows 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_update_workflows --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_administration_scope_targets 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_administration_scope_targets --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_administration_scope_targets_get_count_b15b 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_administration_scope_targets_get_count_b15b --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_administration_scope_targets 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_administration_scope_targets --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_created_by 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_created_by --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_created_by_list_service_provisioning_errors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_created_by_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_created_by_service_provisioning_errors_get_count_e799 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_created_by_service_provisioning_errors_get_count_e799 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_execution_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_execution_scope --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_execution_scope_get_count_5898 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_execution_scope_get_count_5898 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_execution_scope 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_execution_scope --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_last_modified_by 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_last_modified_by --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_last_modified_by_list_service_provisioning_errors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_last_modified_by_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_last_modified_by_service_provisioning_errors_get_count_f282 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_last_modified_by_service_provisioning_errors_get_count_f282 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_activate 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_activate --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_activate_with_scope 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_activate_with_scope --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_create_new_version 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_create_new_version --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_restore 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_restore --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_runs 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_runs --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_count_ba86 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_count_ba86 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_summary 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_summary --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
start_date_time string yes Path parameter `startDateTime`.
end_date_time string yes Path parameter `endDateTime`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_runs 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_runs --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_list_reprocessed_runs 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_list_reprocessed_runs --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_reprocessed_runs_get_count_eacf 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_reprocessed_runs_get_count_eacf --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_reprocessed_runs 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_reprocessed_runs --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
run_id1 string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_list_task_processing_results 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_list_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_get_count_a908 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_get_count_a908 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_task_processing_results 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_run_task_processing_results_task_processing_result_resume 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_run_task_processing_results_task_processing_result_resume --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_get_subject 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_get_subject --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_subject_list_service_provisioning_errors 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_subject_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_subject_service_provisioning_errors_get_count_7d33 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_subject_service_provisioning_errors_get_count_7d33 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_get_task 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_task_processing_results_get_task --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_list_user_processing_results 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_list_user_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_count_8fe3 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_count_8fe3 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_run_user_processing_results_summary 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_run_user_processing_results_summary --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
start_date_time string yes Path parameter `startDateTime`.
end_date_time string yes Path parameter `endDateTime`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_user_processing_results 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_get_user_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_list_reprocessed_runs 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_list_reprocessed_runs --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_reprocessed_runs_get_count_4f4d 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_reprocessed_runs_get_count_4f4d --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_reprocessed_runs 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_reprocessed_runs --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
run_id1 string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_subject 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_subject --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_subject_list_service_provisioning_errors 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_subject_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_subject_service_provisioning_errors_get_count_600e 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_subject_service_provisioning_errors_get_count_600e --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_list_task_processing_results 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_list_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_get_count_fd0a 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_get_count_fd0a --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_task_processing_results 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_get_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_run_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_runs_run_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_get_subject 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_get_subject --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_subject_list_service_provisioning_errors 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_subject_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_2784 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_2784 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_get_task 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_runs_user_processing_results_task_processing_results_get_task --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
run_id string yes Path parameter `run-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_task_reports 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_task_reports --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_count_1125 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_count_1125 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_task_reports_summary 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_task_reports_summary --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
start_date_time string yes Path parameter `startDateTime`.
end_date_time string yes Path parameter `endDateTime`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_task_reports 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_task_reports --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_task 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_task --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_task_definition 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_task_definition --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_list_task_processing_results 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_list_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_get_count_8718 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_get_count_8718 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_task_processing_results 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_get_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_task_reports_task_report_task_processing_results_task_processing_result_resume 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_task_reports_task_report_task_processing_results_task_processing_result_resume --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_get_subject 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_get_subject --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_subject_list_service_provisioning_errors 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_subject_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_subject_service_provisioning_errors_get_count_aefd 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_subject_service_provisioning_errors_get_count_aefd --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_get_task 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_task_reports_task_processing_results_get_task --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_report_id string yes Path parameter `taskReport-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_tasks 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_create_tasks 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_create_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_get_count_1c0a 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_get_count_1c0a --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_delete_tasks 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_delete_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_tasks 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_update_tasks 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_update_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_list_task_processing_results 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_list_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_get_count_4230 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_get_count_4230 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_get_task_processing_results 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_get_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_tasks_task_task_processing_results_task_processing_result_resume 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_tasks_task_task_processing_results_task_processing_result_resume --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_get_subject 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_get_subject --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_subject_list_service_provisioning_errors 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_subject_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_subject_service_provisioning_errors_get_count_4ca2 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_subject_service_provisioning_errors_get_count_4ca2 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_get_task 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_tasks_task_processing_results_get_task --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_user_processing_results 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_user_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_count_d3ed 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_count_d3ed --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_user_processing_results_summary 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_user_processing_results_summary --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
start_date_time string yes Path parameter `startDateTime`.
end_date_time string yes Path parameter `endDateTime`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_user_processing_results 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_user_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_list_reprocessed_runs 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_list_reprocessed_runs --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_reprocessed_runs_get_count_61bf 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_reprocessed_runs_get_count_61bf --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_reprocessed_runs 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_reprocessed_runs --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
run_id string yes Path parameter `run-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_subject 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_subject --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_subject_list_service_provisioning_errors 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_subject_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_subject_service_provisioning_errors_get_count_23a8 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_subject_service_provisioning_errors_get_count_23a8 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_list_task_processing_results 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_list_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_get_count_8333 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_get_count_8333 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_task_processing_results 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_get_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_user_processing_results_user_processing_result_task_processing_results_task_processing_result_resume --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_get_subject 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_get_subject --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_subject_list_service_provisioning_errors 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_subject_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_f382 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_subject_service_provisioning_errors_get_count_f382 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_get_task 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_user_processing_results_task_processing_results_get_task --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
user_processing_result_id string yes Path parameter `userProcessingResult-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_versions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_list_versions --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_count_0c73 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_count_0c73 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_versions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_get_versions --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_list_administration_scope_targets 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_list_administration_scope_targets --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_administration_scope_targets_get_count_b1ae 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_administration_scope_targets_get_count_b1ae --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_administration_scope_targets 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_administration_scope_targets --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_created_by 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_created_by --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_created_by_list_service_provisioning_errors 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_created_by_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_created_by_service_provisioning_errors_get_count_ba38 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_created_by_service_provisioning_errors_get_count_ba38 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_last_modified_by 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_last_modified_by --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_last_modified_by_list_service_provisioning_errors 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_last_modified_by_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_last_modified_by_service_provisioning_errors_get_count_8d93 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_last_modified_by_service_provisioning_errors_get_count_8d93 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_list_tasks 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_list_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_create_tasks 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_create_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_get_count_de98 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_get_count_de98 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_delete_tasks 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_delete_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_tasks 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_get_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_update_tasks 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_update_tasks --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_list_task_processing_results 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_list_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_get_count_6334 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_get_count_6334 --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_get_task_processing_results 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_get_task_processing_results --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_versions_workflow_version_tasks_task_task_processing_results_task_processing_result_resume 16 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_workflow_versions_workflow_version_tasks_task_task_processing_results_task_processing_result_resume --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_get_subject 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_get_subject --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_subject_list_service_provisioning_errors 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_subject_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_subject_service_provisioning_errors_get_count_5d3d 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_subject_service_provisioning_errors_get_count_5d3d --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_get_task 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_lifecycle_workflows_workflows_versions_tasks_task_processing_results_get_task --json
ParameterTypeRequiredDescription
workflow_id string yes Path parameter `workflow-id`.
workflow_version_version_number string yes Path parameter `workflowVersion-versionNumber`.
task_id string yes Path parameter `task-id`.
task_processing_result_id string yes Path parameter `taskProcessingResult-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_delete_privileged_access 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_delete_privileged_access --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_get_privileged_access 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_get_privileged_access --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_update_privileged_access 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_update_privileged_access --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_delete_group 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_delete_group --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_get_group 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_get_group --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_update_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_update_group --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_approvals 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_approvals --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_approvals 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_approvals --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_get_count_612b 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_get_count_612b --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_filter_by_current_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_filter_by_current_user --json
ParameterTypeRequiredDescription
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_approvals 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_approvals --json
ParameterTypeRequiredDescription
approval_id string yes Path parameter `approval-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_approvals 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_approvals --json
ParameterTypeRequiredDescription
approval_id string yes Path parameter `approval-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_approvals 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_approvals --json
ParameterTypeRequiredDescription
approval_id string yes Path parameter `approval-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_list_stages 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_list_stages --json
ParameterTypeRequiredDescription
approval_id string yes Path parameter `approval-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_create_stages 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_create_stages --json
ParameterTypeRequiredDescription
approval_id string yes Path parameter `approval-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_stages_get_count_8fe8 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_stages_get_count_8fe8 --json
ParameterTypeRequiredDescription
approval_id string yes Path parameter `approval-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_delete_stages 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_delete_stages --json
ParameterTypeRequiredDescription
approval_id string yes Path parameter `approval-id`.
approval_stage_id string yes Path parameter `approvalStage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_get_stages 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_get_stages --json
ParameterTypeRequiredDescription
approval_id string yes Path parameter `approval-id`.
approval_stage_id string yes Path parameter `approvalStage-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_update_stages 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_approvals_update_stages --json
ParameterTypeRequiredDescription
approval_id string yes Path parameter `approval-id`.
approval_stage_id string yes Path parameter `approvalStage-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_schedule_instances 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_schedule_instances --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_schedule_instances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_schedule_instances --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_count_8aba 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_count_8aba --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_filter_by_current_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_filter_by_current_user --json
ParameterTypeRequiredDescription
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_schedule_instances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_schedule_instances --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_instance_id string yes Path parameter `privilegedAccessGroupAssignmentScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_schedule_instances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_schedule_instances --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_instance_id string yes Path parameter `privilegedAccessGroupAssignmentScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_schedule_instances 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_schedule_instances --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_instance_id string yes Path parameter `privilegedAccessGroupAssignmentScheduleInstance-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_activated_using 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_activated_using --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_instance_id string yes Path parameter `privilegedAccessGroupAssignmentScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_group --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_instance_id string yes Path parameter `privilegedAccessGroupAssignmentScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_group_list_service_provisioning_errors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_group_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_instance_id string yes Path parameter `privilegedAccessGroupAssignmentScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_group_service_provisioning_errors_get_count_5e16 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_group_service_provisioning_errors_get_count_5e16 --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_instance_id string yes Path parameter `privilegedAccessGroupAssignmentScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_instances_get_principal --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_instance_id string yes Path parameter `privilegedAccessGroupAssignmentScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_schedule_requests 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_schedule_requests --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_schedule_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_schedule_requests --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_count_cd4f 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_count_cd4f --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_filter_by_current_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_filter_by_current_user --json
ParameterTypeRequiredDescription
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_schedule_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_schedule_requests --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_request_id string yes Path parameter `privilegedAccessGroupAssignmentScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_schedule_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_schedule_requests --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_request_id string yes Path parameter `privilegedAccessGroupAssignmentScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_schedule_requests 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_schedule_requests --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_request_id string yes Path parameter `privilegedAccessGroupAssignmentScheduleRequest-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_activated_using 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_activated_using --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_request_id string yes Path parameter `privilegedAccessGroupAssignmentScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_privileged_access_group_assignment_schedule_request_cancel 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_privileged_access_group_assignment_schedule_request_cancel --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_request_id string yes Path parameter `privilegedAccessGroupAssignmentScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_group --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_request_id string yes Path parameter `privilegedAccessGroupAssignmentScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_group_list_service_provisioning_errors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_group_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_request_id string yes Path parameter `privilegedAccessGroupAssignmentScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_group_service_provisioning_errors_get_count_60a7 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_group_service_provisioning_errors_get_count_60a7 --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_request_id string yes Path parameter `privilegedAccessGroupAssignmentScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_principal --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_request_id string yes Path parameter `privilegedAccessGroupAssignmentScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_target_schedule 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedule_requests_get_target_schedule --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_request_id string yes Path parameter `privilegedAccessGroupAssignmentScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_schedules 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_assignment_schedules --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_schedules 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_assignment_schedules --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_count_c3b5 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_count_c3b5 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_filter_by_current_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_filter_by_current_user --json
ParameterTypeRequiredDescription
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_schedules 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_assignment_schedules --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_id string yes Path parameter `privilegedAccessGroupAssignmentSchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_schedules 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_assignment_schedules --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_id string yes Path parameter `privilegedAccessGroupAssignmentSchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_schedules 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_assignment_schedules --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_id string yes Path parameter `privilegedAccessGroupAssignmentSchedule-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_activated_using 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_activated_using --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_id string yes Path parameter `privilegedAccessGroupAssignmentSchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_group --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_id string yes Path parameter `privilegedAccessGroupAssignmentSchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_group_list_service_provisioning_errors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_group_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_id string yes Path parameter `privilegedAccessGroupAssignmentSchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_group_service_provisioning_errors_get_count_f144 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_group_service_provisioning_errors_get_count_f144 --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_id string yes Path parameter `privilegedAccessGroupAssignmentSchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_assignment_schedules_get_principal --json
ParameterTypeRequiredDescription
privileged_access_group_assignment_schedule_id string yes Path parameter `privilegedAccessGroupAssignmentSchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_eligibility_schedule_instances 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_eligibility_schedule_instances --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_eligibility_schedule_instances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_eligibility_schedule_instances --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_get_count_d5bc 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_get_count_d5bc --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_filter_by_current_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_filter_by_current_user --json
ParameterTypeRequiredDescription
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_eligibility_schedule_instances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_eligibility_schedule_instances --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_instance_id string yes Path parameter `privilegedAccessGroupEligibilityScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_eligibility_schedule_instances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_eligibility_schedule_instances --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_instance_id string yes Path parameter `privilegedAccessGroupEligibilityScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_eligibility_schedule_instances 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_eligibility_schedule_instances --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_instance_id string yes Path parameter `privilegedAccessGroupEligibilityScheduleInstance-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_get_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_get_group --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_instance_id string yes Path parameter `privilegedAccessGroupEligibilityScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_group_list_service_provisioning_errors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_group_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_instance_id string yes Path parameter `privilegedAccessGroupEligibilityScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_group_service_provisioning_errors_get_count_ce50 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_group_service_provisioning_errors_get_count_ce50 --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_instance_id string yes Path parameter `privilegedAccessGroupEligibilityScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_get_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_instances_get_principal --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_instance_id string yes Path parameter `privilegedAccessGroupEligibilityScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_eligibility_schedule_requests 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_eligibility_schedule_requests --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_eligibility_schedule_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_eligibility_schedule_requests --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_count_e631 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_count_e631 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_filter_by_current_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_filter_by_current_user --json
ParameterTypeRequiredDescription
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_eligibility_schedule_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_eligibility_schedule_requests --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_request_id string yes Path parameter `privilegedAccessGroupEligibilityScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_eligibility_schedule_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_eligibility_schedule_requests --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_request_id string yes Path parameter `privilegedAccessGroupEligibilityScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_eligibility_schedule_requests 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_eligibility_schedule_requests --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_request_id string yes Path parameter `privilegedAccessGroupEligibilityScheduleRequest-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_privileged_access_group_eligibility_schedule_request_cancel 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_privileged_access_group_eligibility_schedule_request_cancel --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_request_id string yes Path parameter `privilegedAccessGroupEligibilityScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_group --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_request_id string yes Path parameter `privilegedAccessGroupEligibilityScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_group_list_service_provisioning_errors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_group_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_request_id string yes Path parameter `privilegedAccessGroupEligibilityScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_group_service_provisioning_errors_get_count_c344 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_group_service_provisioning_errors_get_count_c344 --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_request_id string yes Path parameter `privilegedAccessGroupEligibilityScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_principal --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_request_id string yes Path parameter `privilegedAccessGroupEligibilityScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_target_schedule 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedule_requests_get_target_schedule --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_request_id string yes Path parameter `privilegedAccessGroupEligibilityScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_eligibility_schedules 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_list_eligibility_schedules --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_eligibility_schedules 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_create_eligibility_schedules --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_get_count_dc2d 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_get_count_dc2d --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_filter_by_current_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_filter_by_current_user --json
ParameterTypeRequiredDescription
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_eligibility_schedules 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_delete_eligibility_schedules --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_id string yes Path parameter `privilegedAccessGroupEligibilitySchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_eligibility_schedules 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_get_eligibility_schedules --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_id string yes Path parameter `privilegedAccessGroupEligibilitySchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_eligibility_schedules 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_update_eligibility_schedules --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_id string yes Path parameter `privilegedAccessGroupEligibilitySchedule-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_get_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_get_group --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_id string yes Path parameter `privilegedAccessGroupEligibilitySchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_group_list_service_provisioning_errors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_group_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_id string yes Path parameter `privilegedAccessGroupEligibilitySchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_group_service_provisioning_errors_get_count_b2c5 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_group_service_provisioning_errors_get_count_b2c5 --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_id string yes Path parameter `privilegedAccessGroupEligibilitySchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_get_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_privileged_access_group_eligibility_schedules_get_principal --json
ParameterTypeRequiredDescription
privileged_access_group_eligibility_schedule_id string yes Path parameter `privilegedAccessGroupEligibilitySchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_delete_terms_of_use 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_delete_terms_of_use --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_get_terms_of_use 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_get_terms_of_use --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_update_terms_of_use 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_update_terms_of_use --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_list_agreement_acceptances 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_list_agreement_acceptances --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_create_agreement_acceptances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_create_agreement_acceptances --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreement_acceptances_get_count_70d1 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreement_acceptances_get_count_70d1 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_delete_agreement_acceptances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_delete_agreement_acceptances --json
ParameterTypeRequiredDescription
agreement_acceptance_id string yes Path parameter `agreementAcceptance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_get_agreement_acceptances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_get_agreement_acceptances --json
ParameterTypeRequiredDescription
agreement_acceptance_id string yes Path parameter `agreementAcceptance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_update_agreement_acceptances 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_update_agreement_acceptances --json
ParameterTypeRequiredDescription
agreement_acceptance_id string yes Path parameter `agreementAcceptance-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_list_agreements 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_list_agreements --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_create_agreements 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_create_agreements --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_get_count_7fcc 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_get_count_7fcc --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_delete_agreements 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_delete_agreements --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_get_agreements 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_get_agreements --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_update_agreements 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_update_agreements --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_list_acceptances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_list_acceptances --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_create_acceptances 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_create_acceptances --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_acceptances_get_count_7e12 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_acceptances_get_count_7e12 --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_delete_acceptances 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_delete_acceptances --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_acceptance_id string yes Path parameter `agreementAcceptance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_get_acceptances 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_get_acceptances --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_acceptance_id string yes Path parameter `agreementAcceptance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_update_acceptances 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_update_acceptances --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_acceptance_id string yes Path parameter `agreementAcceptance-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_delete_file 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_delete_file --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_get_file 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_get_file --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_update_file 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_update_file --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_list_localizations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_list_localizations --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_create_localizations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_create_localizations --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_get_count_d8c7 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_get_count_d8c7 --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_delete_localizations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_delete_localizations --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_file_localization_id string yes Path parameter `agreementFileLocalization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_get_localizations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_get_localizations --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_file_localization_id string yes Path parameter `agreementFileLocalization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_update_localizations 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_update_localizations --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_file_localization_id string yes Path parameter `agreementFileLocalization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_list_versions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_list_versions --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_file_localization_id string yes Path parameter `agreementFileLocalization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_create_versions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_create_versions --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_file_localization_id string yes Path parameter `agreementFileLocalization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_versions_get_count_47c0 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_versions_get_count_47c0 --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_file_localization_id string yes Path parameter `agreementFileLocalization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_delete_versions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_delete_versions --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_file_localization_id string yes Path parameter `agreementFileLocalization-id`.
agreement_file_version_id string yes Path parameter `agreementFileVersion-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_get_versions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_get_versions --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_file_localization_id string yes Path parameter `agreementFileLocalization-id`.
agreement_file_version_id string yes Path parameter `agreementFileVersion-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_update_versions 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_file_localizations_update_versions --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_file_localization_id string yes Path parameter `agreementFileLocalization-id`.
agreement_file_version_id string yes Path parameter `agreementFileVersion-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_list_files 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_list_files --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_create_files 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_create_files --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_get_count_54ad 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_get_count_54ad --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_delete_files 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_delete_files --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_file_localization_id string yes Path parameter `agreementFileLocalization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_get_files 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_get_files --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_file_localization_id string yes Path parameter `agreementFileLocalization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_update_files 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_update_files --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_file_localization_id string yes Path parameter `agreementFileLocalization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_list_versions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_list_versions --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_file_localization_id string yes Path parameter `agreementFileLocalization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_create_versions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_create_versions --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_file_localization_id string yes Path parameter `agreementFileLocalization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_versions_get_count_9b3e 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_versions_get_count_9b3e --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_file_localization_id string yes Path parameter `agreementFileLocalization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_delete_versions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_delete_versions --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_file_localization_id string yes Path parameter `agreementFileLocalization-id`.
agreement_file_version_id string yes Path parameter `agreementFileVersion-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_get_versions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_get_versions --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_file_localization_id string yes Path parameter `agreementFileLocalization-id`.
agreement_file_version_id string yes Path parameter `agreementFileVersion-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_update_versions 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_governance_terms_of_use_agreements_files_update_versions --json
ParameterTypeRequiredDescription
agreement_id string yes Path parameter `agreement-id`.
agreement_file_localization_id string yes Path parameter `agreementFileLocalization-id`.
agreement_file_version_id string yes Path parameter `agreementFileVersion-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_protection_identity_protection_root_get_identity_protection_root 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_identity_protection_root_get_identity_protection_root --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_identity_protection_root_update_identity_protection_root 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_identity_protection_root_update_identity_protection_root --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_protection_list_risk_detections 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_list_risk_detections --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_create_risk_detections 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_create_risk_detections --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_protection_risk_detections_get_count_ee19 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risk_detections_get_count_ee19 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_delete_risk_detections 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_delete_risk_detections --json
ParameterTypeRequiredDescription
risk_detection_id string yes Path parameter `riskDetection-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_get_risk_detections 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_get_risk_detections --json
ParameterTypeRequiredDescription
risk_detection_id string yes Path parameter `riskDetection-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_update_risk_detections 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_update_risk_detections --json
ParameterTypeRequiredDescription
risk_detection_id string yes Path parameter `riskDetection-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_protection_list_risky_service_principals 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_list_risky_service_principals --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_create_risky_service_principals 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_create_risky_service_principals --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_get_count_d335 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_get_count_d335 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_confirm_compromised 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_confirm_compromised --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_dismiss 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_dismiss --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_protection_delete_risky_service_principals 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_delete_risky_service_principals --json
ParameterTypeRequiredDescription
risky_service_principal_id string yes Path parameter `riskyServicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_get_risky_service_principals 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_get_risky_service_principals --json
ParameterTypeRequiredDescription
risky_service_principal_id string yes Path parameter `riskyServicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_update_risky_service_principals 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_update_risky_service_principals --json
ParameterTypeRequiredDescription
risky_service_principal_id string yes Path parameter `riskyServicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_list_history 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_list_history --json
ParameterTypeRequiredDescription
risky_service_principal_id string yes Path parameter `riskyServicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_create_history 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_create_history --json
ParameterTypeRequiredDescription
risky_service_principal_id string yes Path parameter `riskyServicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_history_get_count_818f 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_history_get_count_818f --json
ParameterTypeRequiredDescription
risky_service_principal_id string yes Path parameter `riskyServicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_delete_history 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_delete_history --json
ParameterTypeRequiredDescription
risky_service_principal_id string yes Path parameter `riskyServicePrincipal-id`.
risky_service_principal_history_item_id string yes Path parameter `riskyServicePrincipalHistoryItem-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_get_history 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_get_history --json
ParameterTypeRequiredDescription
risky_service_principal_id string yes Path parameter `riskyServicePrincipal-id`.
risky_service_principal_history_item_id string yes Path parameter `riskyServicePrincipalHistoryItem-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_update_history 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_service_principals_update_history --json
ParameterTypeRequiredDescription
risky_service_principal_id string yes Path parameter `riskyServicePrincipal-id`.
risky_service_principal_history_item_id string yes Path parameter `riskyServicePrincipalHistoryItem-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_protection_list_risky_users 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_list_risky_users --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_create_risky_users 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_create_risky_users --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_get_count_2b7d 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_get_count_2b7d --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_confirm_compromised 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_confirm_compromised --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_confirm_safe 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_confirm_safe --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_dismiss 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_dismiss --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_protection_delete_risky_users 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_delete_risky_users --json
ParameterTypeRequiredDescription
risky_user_id string yes Path parameter `riskyUser-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_get_risky_users 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_get_risky_users --json
ParameterTypeRequiredDescription
risky_user_id string yes Path parameter `riskyUser-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_update_risky_users 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_update_risky_users --json
ParameterTypeRequiredDescription
risky_user_id string yes Path parameter `riskyUser-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_list_history 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_list_history --json
ParameterTypeRequiredDescription
risky_user_id string yes Path parameter `riskyUser-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_create_history 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_create_history --json
ParameterTypeRequiredDescription
risky_user_id string yes Path parameter `riskyUser-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_history_get_count_33a2 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_history_get_count_33a2 --json
ParameterTypeRequiredDescription
risky_user_id string yes Path parameter `riskyUser-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_delete_history 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_delete_history --json
ParameterTypeRequiredDescription
risky_user_id string yes Path parameter `riskyUser-id`.
risky_user_history_item_id string yes Path parameter `riskyUserHistoryItem-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_get_history 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_get_history --json
ParameterTypeRequiredDescription
risky_user_id string yes Path parameter `riskyUser-id`.
risky_user_history_item_id string yes Path parameter `riskyUserHistoryItem-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_update_history 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_risky_users_update_history --json
ParameterTypeRequiredDescription
risky_user_id string yes Path parameter `riskyUser-id`.
risky_user_history_item_id string yes Path parameter `riskyUserHistoryItem-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_protection_list_service_principal_risk_detections 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_list_service_principal_risk_detections --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_create_service_principal_risk_detections 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_create_service_principal_risk_detections --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_identity_protection_service_principal_risk_detections_get_count_1bc5 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_service_principal_risk_detections_get_count_1bc5 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_delete_service_principal_risk_detections 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_delete_service_principal_risk_detections --json
ParameterTypeRequiredDescription
service_principal_risk_detection_id string yes Path parameter `servicePrincipalRiskDetection-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_get_service_principal_risk_detections 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_get_service_principal_risk_detections --json
ParameterTypeRequiredDescription
service_principal_risk_detection_id string yes Path parameter `servicePrincipalRiskDetection-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 directory queries.
microsoft-entra-id.microsoft_entra_id_identity_protection_update_service_principal_risk_detections 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_identity_protection_update_service_principal_risk_detections --json
ParameterTypeRequiredDescription
service_principal_risk_detection_id string yes Path parameter `servicePrincipalRiskDetection-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_invitations_invitation_list_invitation 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_invitations_invitation_list_invitation --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_invitations_invitation_create_invitation 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_invitations_invitation_create_invitation --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_invitations_get_count_8ff1 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_invitations_get_count_8ff1 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_invitations_get_invited_user 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_invitations_get_invited_user --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_invitations_invited_user_list_service_provisioning_errors 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_invitations_invited_user_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_invitations_invited_user_service_provisioning_errors_get_count_df29 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_invitations_invited_user_service_provisioning_errors_get_count_df29 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_invitations_list_invited_user_sponsors 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_invitations_list_invited_user_sponsors --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_invitations_invited_user_sponsors_get_count_648d 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_invitations_invited_user_sponsors_get_count_648d --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_invitations_get_invited_user_sponsors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_invitations_get_invited_user_sponsors --json
ParameterTypeRequiredDescription
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_list_oauth2_permission_grant 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_list_oauth2_permission_grant --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_create_oauth2_permission_grant 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_create_oauth2_permission_grant --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_get_count_8287 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_get_count_8287 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_delta 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_delta --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_delete_oauth2_permission_grant 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_delete_oauth2_permission_grant --json
ParameterTypeRequiredDescription
o_auth2_permission_grant_id string yes Path parameter `oAuth2PermissionGrant-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 directory queries.
microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_get_oauth2_permission_grant 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_get_oauth2_permission_grant --json
ParameterTypeRequiredDescription
o_auth2_permission_grant_id string yes Path parameter `oAuth2PermissionGrant-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 directory queries.
microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_update_oauth2_permission_grant 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_oauth2_permission_grants_o_auth2_permission_grant_update_oauth2_permission_grant --json
ParameterTypeRequiredDescription
o_auth2_permission_grant_id string yes Path parameter `oAuth2PermissionGrant-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_organization_list_organization 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_organization_list_organization --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_organization_organization_create_organization 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_organization_create_organization --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_get_count_9453 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_get_count_9453 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_organization_delta 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_delta --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_organization_get_available_extension_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_get_available_extension_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_get_by_ids 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_get_by_ids --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_validate_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_validate_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_organization_delete_organization 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_organization_delete_organization --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_organization_get_organization 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_organization_get_organization --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_organization_update_organization 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_organization_update_organization --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_delete_branding 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_delete_branding --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_get_branding 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_get_branding --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_update_branding 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_update_branding --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_delete_branding_background_image 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_delete_branding_background_image --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_get_branding_background_image 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_get_branding_background_image --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_update_branding_background_image 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_update_branding_background_image --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_delete_branding_custom_css 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_delete_branding_custom_css --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_get_branding_custom_css 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_get_branding_custom_css --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_update_branding_custom_css 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_update_branding_custom_css --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_delete_branding_favicon 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_delete_branding_favicon --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_get_branding_favicon 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_get_branding_favicon --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_update_branding_favicon 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_update_branding_favicon --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_branding_list_localizations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_branding_list_localizations --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_branding_create_localizations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_branding_create_localizations --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_branding_localizations_get_count_e39f 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_branding_localizations_get_count_e39f --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
organizational_branding_localization_id string yes Path parameter `organizationalBrandingLocalization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
organizational_branding_localization_id string yes Path parameter `organizationalBrandingLocalization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
organizational_branding_localization_id string yes Path parameter `organizationalBrandingLocalization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations_background_image 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations_background_image --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
organizational_branding_localization_id string yes Path parameter `organizationalBrandingLocalization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations_background_image 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations_background_image --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
organizational_branding_localization_id string yes Path parameter `organizationalBrandingLocalization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations_background_image 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations_background_image --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
organizational_branding_localization_id string yes Path parameter `organizationalBrandingLocalization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations_custom_css 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations_custom_css --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
organizational_branding_localization_id string yes Path parameter `organizationalBrandingLocalization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations_custom_css 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations_custom_css --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
organizational_branding_localization_id string yes Path parameter `organizationalBrandingLocalization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations_custom_css 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations_custom_css --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
organizational_branding_localization_id string yes Path parameter `organizationalBrandingLocalization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations_favicon 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations_favicon --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
organizational_branding_localization_id string yes Path parameter `organizationalBrandingLocalization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations_favicon 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations_favicon --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
organizational_branding_localization_id string yes Path parameter `organizationalBrandingLocalization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations_favicon 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations_favicon --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
organizational_branding_localization_id string yes Path parameter `organizationalBrandingLocalization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations_square_logo_dark 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_branding_delete_localizations_square_logo_dark --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
organizational_branding_localization_id string yes Path parameter `organizationalBrandingLocalization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations_square_logo_dark 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_branding_get_localizations_square_logo_dark --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
organizational_branding_localization_id string yes Path parameter `organizationalBrandingLocalization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations_square_logo_dark 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_branding_update_localizations_square_logo_dark --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
organizational_branding_localization_id string yes Path parameter `organizationalBrandingLocalization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_delete_branding_square_logo_dark 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_delete_branding_square_logo_dark --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_get_branding_square_logo_dark 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_get_branding_square_logo_dark --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_update_branding_square_logo_dark 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_update_branding_square_logo_dark --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_list_certificate_based_auth_configuration 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_list_certificate_based_auth_configuration --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_create_certificate_based_auth_configuration 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_create_certificate_based_auth_configuration --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_certificate_based_auth_configuration_get_count_8262 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_certificate_based_auth_configuration_get_count_8262 --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_delete_certificate_based_auth_configuration 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_delete_certificate_based_auth_configuration --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
certificate_based_auth_configuration_id string yes Path parameter `certificateBasedAuthConfiguration-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_get_certificate_based_auth_configuration 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_get_certificate_based_auth_configuration --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
certificate_based_auth_configuration_id string yes Path parameter `certificateBasedAuthConfiguration-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_organization_check_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_organization_check_member_groups --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_organization_check_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_organization_check_member_objects --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_list_extensions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_list_extensions --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_create_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_create_extensions --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_extensions_get_count_bee2 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_extensions_get_count_bee2 --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_delete_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_delete_extensions --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
extension_id string yes Path parameter `extension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_get_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_get_extensions --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
extension_id string yes Path parameter `extension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_update_extensions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_update_extensions --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-id`.
extension_id string yes Path parameter `extension-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_organization_get_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_organization_get_member_groups --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_organization_get_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_organization_get_member_objects --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_organization_organization_restore 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_organization_restore --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_organization_organization_set_mobile_device_management_authority 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_organization_organization_set_mobile_device_management_authority --json
ParameterTypeRequiredDescription
organization_id string yes Path parameter `organization-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_policy_root_get_policy_root 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_policy_root_get_policy_root --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_policy_root_update_policy_root 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_policy_root_update_policy_root --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_list_activity_based_timeout_policies 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_list_activity_based_timeout_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_create_activity_based_timeout_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_create_activity_based_timeout_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_activity_based_timeout_policies_get_count_1f03 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_activity_based_timeout_policies_get_count_1f03 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_delete_activity_based_timeout_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_delete_activity_based_timeout_policies --json
ParameterTypeRequiredDescription
activity_based_timeout_policy_id string yes Path parameter `activityBasedTimeoutPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_get_activity_based_timeout_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_activity_based_timeout_policies --json
ParameterTypeRequiredDescription
activity_based_timeout_policy_id string yes Path parameter `activityBasedTimeoutPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_activity_based_timeout_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_activity_based_timeout_policies --json
ParameterTypeRequiredDescription
activity_based_timeout_policy_id string yes Path parameter `activityBasedTimeoutPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_activity_based_timeout_policies_list_applies_to 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_activity_based_timeout_policies_list_applies_to --json
ParameterTypeRequiredDescription
activity_based_timeout_policy_id string yes Path parameter `activityBasedTimeoutPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_activity_based_timeout_policies_applies_to_get_count_f5ce 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_activity_based_timeout_policies_applies_to_get_count_f5ce --json
ParameterTypeRequiredDescription
activity_based_timeout_policy_id string yes Path parameter `activityBasedTimeoutPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_activity_based_timeout_policies_get_applies_to 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_activity_based_timeout_policies_get_applies_to --json
ParameterTypeRequiredDescription
activity_based_timeout_policy_id string yes Path parameter `activityBasedTimeoutPolicy-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_list_app_management_policies 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_list_app_management_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_create_app_management_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_create_app_management_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_app_management_policies_get_count_c99e 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_app_management_policies_get_count_c99e --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_delete_app_management_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_delete_app_management_policies --json
ParameterTypeRequiredDescription
app_management_policy_id string yes Path parameter `appManagementPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_get_app_management_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_app_management_policies --json
ParameterTypeRequiredDescription
app_management_policy_id string yes Path parameter `appManagementPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_app_management_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_app_management_policies --json
ParameterTypeRequiredDescription
app_management_policy_id string yes Path parameter `appManagementPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_app_management_policies_list_applies_to 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_app_management_policies_list_applies_to --json
ParameterTypeRequiredDescription
app_management_policy_id string yes Path parameter `appManagementPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_app_management_policies_applies_to_get_count_b064 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_app_management_policies_applies_to_get_count_b064 --json
ParameterTypeRequiredDescription
app_management_policy_id string yes Path parameter `appManagementPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_app_management_policies_get_applies_to 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_app_management_policies_get_applies_to --json
ParameterTypeRequiredDescription
app_management_policy_id string yes Path parameter `appManagementPolicy-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_delete_authentication_flows_policy 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_delete_authentication_flows_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_get_authentication_flows_policy 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_authentication_flows_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_authentication_flows_policy 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_authentication_flows_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_delete_authentication_methods_policy 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_delete_authentication_methods_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_get_authentication_methods_policy 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_authentication_methods_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_authentication_methods_policy 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_authentication_methods_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_list_authentication_method_configurations 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_list_authentication_method_configurations --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_create_authentication_method_configurations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_create_authentication_method_configurations --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_authentication_method_configurations_get_count_e541 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_authentication_method_configurations_get_count_e541 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_delete_authentication_method_configurations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_delete_authentication_method_configurations --json
ParameterTypeRequiredDescription
authentication_method_configuration_id string yes Path parameter `authenticationMethodConfiguration-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_get_authentication_method_configurations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_get_authentication_method_configurations --json
ParameterTypeRequiredDescription
authentication_method_configuration_id string yes Path parameter `authenticationMethodConfiguration-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_update_authentication_method_configurations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_authentication_methods_policy_update_authentication_method_configurations --json
ParameterTypeRequiredDescription
authentication_method_configuration_id string yes Path parameter `authenticationMethodConfiguration-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_list_authentication_strength_policies 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_list_authentication_strength_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_create_authentication_strength_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_create_authentication_strength_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_get_count_db73 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_get_count_db73 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_delete_authentication_strength_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_delete_authentication_strength_policies --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_get_authentication_strength_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_authentication_strength_policies --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_authentication_strength_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_authentication_strength_policies --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_list_combination_configurations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_list_combination_configurations --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_create_combination_configurations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_create_combination_configurations --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_combination_configurations_get_count_7b5f 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_combination_configurations_get_count_7b5f --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_delete_combination_configurations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_delete_combination_configurations --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-id`.
authentication_combination_configuration_id string yes Path parameter `authenticationCombinationConfiguration-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_get_combination_configurations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_get_combination_configurations --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-id`.
authentication_combination_configuration_id string yes Path parameter `authenticationCombinationConfiguration-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_update_combination_configurations 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_update_combination_configurations --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-id`.
authentication_combination_configuration_id string yes Path parameter `authenticationCombinationConfiguration-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_authentication_strength_policy_update_allowed_combinations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_authentication_strength_policy_update_allowed_combinations --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_authentication_strength_policy_usage 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_authentication_strength_policies_authentication_strength_policy_usage --json
ParameterTypeRequiredDescription
authentication_strength_policy_id string yes Path parameter `authenticationStrengthPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_delete_authorization_policy 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_delete_authorization_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_get_authorization_policy 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_authorization_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_authorization_policy 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_authorization_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_list_claims_mapping_policies 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_list_claims_mapping_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_create_claims_mapping_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_create_claims_mapping_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_claims_mapping_policies_get_count_0f66 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_claims_mapping_policies_get_count_0f66 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_delete_claims_mapping_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_delete_claims_mapping_policies --json
ParameterTypeRequiredDescription
claims_mapping_policy_id string yes Path parameter `claimsMappingPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_get_claims_mapping_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_claims_mapping_policies --json
ParameterTypeRequiredDescription
claims_mapping_policy_id string yes Path parameter `claimsMappingPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_claims_mapping_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_claims_mapping_policies --json
ParameterTypeRequiredDescription
claims_mapping_policy_id string yes Path parameter `claimsMappingPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_claims_mapping_policies_list_applies_to 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_claims_mapping_policies_list_applies_to --json
ParameterTypeRequiredDescription
claims_mapping_policy_id string yes Path parameter `claimsMappingPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_claims_mapping_policies_applies_to_get_count_46aa 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_claims_mapping_policies_applies_to_get_count_46aa --json
ParameterTypeRequiredDescription
claims_mapping_policy_id string yes Path parameter `claimsMappingPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_claims_mapping_policies_get_applies_to 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_claims_mapping_policies_get_applies_to --json
ParameterTypeRequiredDescription
claims_mapping_policy_id string yes Path parameter `claimsMappingPolicy-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_list_conditional_access_policies 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_list_conditional_access_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_create_conditional_access_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_create_conditional_access_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_conditional_access_policies_get_count_2c66 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_conditional_access_policies_get_count_2c66 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_delete_conditional_access_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_delete_conditional_access_policies --json
ParameterTypeRequiredDescription
conditional_access_policy_id string yes Path parameter `conditionalAccessPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_get_conditional_access_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_conditional_access_policies --json
ParameterTypeRequiredDescription
conditional_access_policy_id string yes Path parameter `conditionalAccessPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_conditional_access_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_conditional_access_policies --json
ParameterTypeRequiredDescription
conditional_access_policy_id string yes Path parameter `conditionalAccessPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_conditional_access_policies_conditional_access_policy_restore 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_conditional_access_policies_conditional_access_policy_restore --json
ParameterTypeRequiredDescription
conditional_access_policy_id string yes Path parameter `conditionalAccessPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_delete_cross_tenant_access_policy 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_delete_cross_tenant_access_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_get_cross_tenant_access_policy 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_cross_tenant_access_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_cross_tenant_access_policy 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_cross_tenant_access_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_delete_default 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_delete_default --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_get_default 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_get_default --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_update_default 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_update_default --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_default_reset_to_system_default 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_default_reset_to_system_default --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_list_partners 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_list_partners --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_create_partners 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_create_partners --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_partners_get_count_d5d2 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_partners_get_count_d5d2 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_delete_partners 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_delete_partners --json
ParameterTypeRequiredDescription
cross_tenant_access_policy_configuration_partner_tenant_id string yes Path parameter `crossTenantAccessPolicyConfigurationPartner-tenantId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_get_partners 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_get_partners --json
ParameterTypeRequiredDescription
cross_tenant_access_policy_configuration_partner_tenant_id string yes Path parameter `crossTenantAccessPolicyConfigurationPartner-tenantId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_update_partners 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_update_partners --json
ParameterTypeRequiredDescription
cross_tenant_access_policy_configuration_partner_tenant_id string yes Path parameter `crossTenantAccessPolicyConfigurationPartner-tenantId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_partners_delete_identity_synchronization 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_partners_delete_identity_synchronization --json
ParameterTypeRequiredDescription
cross_tenant_access_policy_configuration_partner_tenant_id string yes Path parameter `crossTenantAccessPolicyConfigurationPartner-tenantId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_partners_get_identity_synchronization 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_partners_get_identity_synchronization --json
ParameterTypeRequiredDescription
cross_tenant_access_policy_configuration_partner_tenant_id string yes Path parameter `crossTenantAccessPolicyConfigurationPartner-tenantId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_partners_set_identity_synchronization 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_partners_set_identity_synchronization --json
ParameterTypeRequiredDescription
cross_tenant_access_policy_configuration_partner_tenant_id string yes Path parameter `crossTenantAccessPolicyConfigurationPartner-tenantId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_delete_templates 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_delete_templates --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_get_templates 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_get_templates --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_update_templates 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_update_templates --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_delete_multi_tenant_organization_identity_synchronization 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_delete_multi_tenant_organization_identity_synchronization --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_get_multi_tenant_organization_identity_synchronization 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_get_multi_tenant_organization_identity_synchronization --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_update_multi_tenant_organization_identity_synchronization 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_update_multi_tenant_organization_identity_synchronization --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_delete_multi_tenant_organization_partner_configuration 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_delete_multi_tenant_organization_partner_configuration --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_get_multi_tenant_organization_partner_configuration 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_get_multi_tenant_organization_partner_configuration --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_update_multi_tenant_organization_partner_configuration 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_cross_tenant_access_policy_templates_update_multi_tenant_organization_partner_configuration --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_delete_default_app_management_policy 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_delete_default_app_management_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_get_default_app_management_policy 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_default_app_management_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_default_app_management_policy 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_default_app_management_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_get_device_registration_policy 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_device_registration_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_list_feature_rollout_policies 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_list_feature_rollout_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_create_feature_rollout_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_create_feature_rollout_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_get_count_bb08 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_get_count_bb08 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_delete_feature_rollout_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_delete_feature_rollout_policies --json
ParameterTypeRequiredDescription
feature_rollout_policy_id string yes Path parameter `featureRolloutPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_get_feature_rollout_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_feature_rollout_policies --json
ParameterTypeRequiredDescription
feature_rollout_policy_id string yes Path parameter `featureRolloutPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_feature_rollout_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_feature_rollout_policies --json
ParameterTypeRequiredDescription
feature_rollout_policy_id string yes Path parameter `featureRolloutPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_list_applies_to 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_list_applies_to --json
ParameterTypeRequiredDescription
feature_rollout_policy_id string yes Path parameter `featureRolloutPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_create_applies_to 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_create_applies_to --json
ParameterTypeRequiredDescription
feature_rollout_policy_id string yes Path parameter `featureRolloutPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_applies_to_get_count_b7fc 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_applies_to_get_count_b7fc --json
ParameterTypeRequiredDescription
feature_rollout_policy_id string yes Path parameter `featureRolloutPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_delete_ref_applies_to 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_delete_ref_applies_to --json
ParameterTypeRequiredDescription
feature_rollout_policy_id string yes Path parameter `featureRolloutPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_list_ref_applies_to 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_list_ref_applies_to --json
ParameterTypeRequiredDescription
feature_rollout_policy_id string yes Path parameter `featureRolloutPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_create_ref_applies_to 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_create_ref_applies_to --json
ParameterTypeRequiredDescription
feature_rollout_policy_id string yes Path parameter `featureRolloutPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_applies_to_delete_ref_directory_object 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_feature_rollout_policies_applies_to_delete_ref_directory_object --json
ParameterTypeRequiredDescription
feature_rollout_policy_id string yes Path parameter `featureRolloutPolicy-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_list_home_realm_discovery_policies 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_list_home_realm_discovery_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_create_home_realm_discovery_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_create_home_realm_discovery_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_home_realm_discovery_policies_get_count_9451 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_home_realm_discovery_policies_get_count_9451 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_delete_home_realm_discovery_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_delete_home_realm_discovery_policies --json
ParameterTypeRequiredDescription
home_realm_discovery_policy_id string yes Path parameter `homeRealmDiscoveryPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_get_home_realm_discovery_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_home_realm_discovery_policies --json
ParameterTypeRequiredDescription
home_realm_discovery_policy_id string yes Path parameter `homeRealmDiscoveryPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_home_realm_discovery_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_home_realm_discovery_policies --json
ParameterTypeRequiredDescription
home_realm_discovery_policy_id string yes Path parameter `homeRealmDiscoveryPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_home_realm_discovery_policies_list_applies_to 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_home_realm_discovery_policies_list_applies_to --json
ParameterTypeRequiredDescription
home_realm_discovery_policy_id string yes Path parameter `homeRealmDiscoveryPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_home_realm_discovery_policies_applies_to_get_count_6090 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_home_realm_discovery_policies_applies_to_get_count_6090 --json
ParameterTypeRequiredDescription
home_realm_discovery_policy_id string yes Path parameter `homeRealmDiscoveryPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_home_realm_discovery_policies_get_applies_to 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_home_realm_discovery_policies_get_applies_to --json
ParameterTypeRequiredDescription
home_realm_discovery_policy_id string yes Path parameter `homeRealmDiscoveryPolicy-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_delete_identity_security_defaults_enforcement_policy 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_delete_identity_security_defaults_enforcement_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_get_identity_security_defaults_enforcement_policy 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_identity_security_defaults_enforcement_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_identity_security_defaults_enforcement_policy 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_identity_security_defaults_enforcement_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_get_ownerless_group_policy 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_ownerless_group_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_ownerless_group_policy 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_ownerless_group_policy --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_list_permission_grant_policies 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_list_permission_grant_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_create_permission_grant_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_create_permission_grant_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_get_count_86b8 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_get_count_86b8 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_delete_permission_grant_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_delete_permission_grant_policies --json
ParameterTypeRequiredDescription
permission_grant_policy_id string yes Path parameter `permissionGrantPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_get_permission_grant_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_permission_grant_policies --json
ParameterTypeRequiredDescription
permission_grant_policy_id string yes Path parameter `permissionGrantPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_permission_grant_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_permission_grant_policies --json
ParameterTypeRequiredDescription
permission_grant_policy_id string yes Path parameter `permissionGrantPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_list_excludes 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_list_excludes --json
ParameterTypeRequiredDescription
permission_grant_policy_id string yes Path parameter `permissionGrantPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_create_excludes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_create_excludes --json
ParameterTypeRequiredDescription
permission_grant_policy_id string yes Path parameter `permissionGrantPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_excludes_get_count_7507 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_excludes_get_count_7507 --json
ParameterTypeRequiredDescription
permission_grant_policy_id string yes Path parameter `permissionGrantPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_delete_excludes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_delete_excludes --json
ParameterTypeRequiredDescription
permission_grant_policy_id string yes Path parameter `permissionGrantPolicy-id`.
permission_grant_condition_set_id string yes Path parameter `permissionGrantConditionSet-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_get_excludes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_get_excludes --json
ParameterTypeRequiredDescription
permission_grant_policy_id string yes Path parameter `permissionGrantPolicy-id`.
permission_grant_condition_set_id string yes Path parameter `permissionGrantConditionSet-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_update_excludes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_update_excludes --json
ParameterTypeRequiredDescription
permission_grant_policy_id string yes Path parameter `permissionGrantPolicy-id`.
permission_grant_condition_set_id string yes Path parameter `permissionGrantConditionSet-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_list_includes 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_list_includes --json
ParameterTypeRequiredDescription
permission_grant_policy_id string yes Path parameter `permissionGrantPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_create_includes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_create_includes --json
ParameterTypeRequiredDescription
permission_grant_policy_id string yes Path parameter `permissionGrantPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_includes_get_count_4a76 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_includes_get_count_4a76 --json
ParameterTypeRequiredDescription
permission_grant_policy_id string yes Path parameter `permissionGrantPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_delete_includes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_delete_includes --json
ParameterTypeRequiredDescription
permission_grant_policy_id string yes Path parameter `permissionGrantPolicy-id`.
permission_grant_condition_set_id string yes Path parameter `permissionGrantConditionSet-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_get_includes 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_get_includes --json
ParameterTypeRequiredDescription
permission_grant_policy_id string yes Path parameter `permissionGrantPolicy-id`.
permission_grant_condition_set_id string yes Path parameter `permissionGrantConditionSet-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_update_includes 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_permission_grant_policies_update_includes --json
ParameterTypeRequiredDescription
permission_grant_policy_id string yes Path parameter `permissionGrantPolicy-id`.
permission_grant_condition_set_id string yes Path parameter `permissionGrantConditionSet-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_list_role_management_policies 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_list_role_management_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_create_role_management_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_create_role_management_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_get_count_cdca 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_get_count_cdca --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_delete_role_management_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_delete_role_management_policies --json
ParameterTypeRequiredDescription
unified_role_management_policy_id string yes Path parameter `unifiedRoleManagementPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_get_role_management_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_role_management_policies --json
ParameterTypeRequiredDescription
unified_role_management_policy_id string yes Path parameter `unifiedRoleManagementPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_role_management_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_role_management_policies --json
ParameterTypeRequiredDescription
unified_role_management_policy_id string yes Path parameter `unifiedRoleManagementPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_list_effective_rules 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_list_effective_rules --json
ParameterTypeRequiredDescription
unified_role_management_policy_id string yes Path parameter `unifiedRoleManagementPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_create_effective_rules 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_create_effective_rules --json
ParameterTypeRequiredDescription
unified_role_management_policy_id string yes Path parameter `unifiedRoleManagementPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_effective_rules_get_count_5858 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_effective_rules_get_count_5858 --json
ParameterTypeRequiredDescription
unified_role_management_policy_id string yes Path parameter `unifiedRoleManagementPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_delete_effective_rules 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_delete_effective_rules --json
ParameterTypeRequiredDescription
unified_role_management_policy_id string yes Path parameter `unifiedRoleManagementPolicy-id`.
unified_role_management_policy_rule_id string yes Path parameter `unifiedRoleManagementPolicyRule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_get_effective_rules 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_get_effective_rules --json
ParameterTypeRequiredDescription
unified_role_management_policy_id string yes Path parameter `unifiedRoleManagementPolicy-id`.
unified_role_management_policy_rule_id string yes Path parameter `unifiedRoleManagementPolicyRule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_update_effective_rules 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_update_effective_rules --json
ParameterTypeRequiredDescription
unified_role_management_policy_id string yes Path parameter `unifiedRoleManagementPolicy-id`.
unified_role_management_policy_rule_id string yes Path parameter `unifiedRoleManagementPolicyRule-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_list_rules 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_list_rules --json
ParameterTypeRequiredDescription
unified_role_management_policy_id string yes Path parameter `unifiedRoleManagementPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_create_rules 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_create_rules --json
ParameterTypeRequiredDescription
unified_role_management_policy_id string yes Path parameter `unifiedRoleManagementPolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_rules_get_count_6c00 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_rules_get_count_6c00 --json
ParameterTypeRequiredDescription
unified_role_management_policy_id string yes Path parameter `unifiedRoleManagementPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_delete_rules 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_delete_rules --json
ParameterTypeRequiredDescription
unified_role_management_policy_id string yes Path parameter `unifiedRoleManagementPolicy-id`.
unified_role_management_policy_rule_id string yes Path parameter `unifiedRoleManagementPolicyRule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_get_rules 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_get_rules --json
ParameterTypeRequiredDescription
unified_role_management_policy_id string yes Path parameter `unifiedRoleManagementPolicy-id`.
unified_role_management_policy_rule_id string yes Path parameter `unifiedRoleManagementPolicyRule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_update_rules 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_role_management_policies_update_rules --json
ParameterTypeRequiredDescription
unified_role_management_policy_id string yes Path parameter `unifiedRoleManagementPolicy-id`.
unified_role_management_policy_rule_id string yes Path parameter `unifiedRoleManagementPolicyRule-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_list_role_management_policy_assignments 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_list_role_management_policy_assignments --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_create_role_management_policy_assignments 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_create_role_management_policy_assignments --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_role_management_policy_assignments_get_count_8d94 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_role_management_policy_assignments_get_count_8d94 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_delete_role_management_policy_assignments 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_delete_role_management_policy_assignments --json
ParameterTypeRequiredDescription
unified_role_management_policy_assignment_id string yes Path parameter `unifiedRoleManagementPolicyAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_get_role_management_policy_assignments 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_role_management_policy_assignments --json
ParameterTypeRequiredDescription
unified_role_management_policy_assignment_id string yes Path parameter `unifiedRoleManagementPolicyAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_role_management_policy_assignments 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_role_management_policy_assignments --json
ParameterTypeRequiredDescription
unified_role_management_policy_assignment_id string yes Path parameter `unifiedRoleManagementPolicyAssignment-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_role_management_policy_assignments_get_policy 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_role_management_policy_assignments_get_policy --json
ParameterTypeRequiredDescription
unified_role_management_policy_assignment_id string yes Path parameter `unifiedRoleManagementPolicyAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_list_token_issuance_policies 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_list_token_issuance_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_create_token_issuance_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_create_token_issuance_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_token_issuance_policies_get_count_224d 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_token_issuance_policies_get_count_224d --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_delete_token_issuance_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_delete_token_issuance_policies --json
ParameterTypeRequiredDescription
token_issuance_policy_id string yes Path parameter `tokenIssuancePolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_get_token_issuance_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_token_issuance_policies --json
ParameterTypeRequiredDescription
token_issuance_policy_id string yes Path parameter `tokenIssuancePolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_token_issuance_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_token_issuance_policies --json
ParameterTypeRequiredDescription
token_issuance_policy_id string yes Path parameter `tokenIssuancePolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_token_issuance_policies_list_applies_to 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_token_issuance_policies_list_applies_to --json
ParameterTypeRequiredDescription
token_issuance_policy_id string yes Path parameter `tokenIssuancePolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_token_issuance_policies_applies_to_get_count_e7f9 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_token_issuance_policies_applies_to_get_count_e7f9 --json
ParameterTypeRequiredDescription
token_issuance_policy_id string yes Path parameter `tokenIssuancePolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_token_issuance_policies_get_applies_to 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_token_issuance_policies_get_applies_to --json
ParameterTypeRequiredDescription
token_issuance_policy_id string yes Path parameter `tokenIssuancePolicy-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_list_token_lifetime_policies 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_list_token_lifetime_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_create_token_lifetime_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_create_token_lifetime_policies --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_token_lifetime_policies_get_count_12df 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_token_lifetime_policies_get_count_12df --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_policies_delete_token_lifetime_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_delete_token_lifetime_policies --json
ParameterTypeRequiredDescription
token_lifetime_policy_id string yes Path parameter `tokenLifetimePolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_get_token_lifetime_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_get_token_lifetime_policies --json
ParameterTypeRequiredDescription
token_lifetime_policy_id string yes Path parameter `tokenLifetimePolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_update_token_lifetime_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_update_token_lifetime_policies --json
ParameterTypeRequiredDescription
token_lifetime_policy_id string yes Path parameter `tokenLifetimePolicy-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_policies_token_lifetime_policies_list_applies_to 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_token_lifetime_policies_list_applies_to --json
ParameterTypeRequiredDescription
token_lifetime_policy_id string yes Path parameter `tokenLifetimePolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_token_lifetime_policies_applies_to_get_count_3209 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_token_lifetime_policies_applies_to_get_count_3209 --json
ParameterTypeRequiredDescription
token_lifetime_policy_id string yes Path parameter `tokenLifetimePolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_policies_token_lifetime_policies_get_applies_to 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_policies_token_lifetime_policies_get_applies_to --json
ParameterTypeRequiredDescription
token_lifetime_policy_id string yes Path parameter `tokenLifetimePolicy-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_delete_directory 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_delete_directory --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_get_directory 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_get_directory --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_update_directory 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_update_directory --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_list_resource_namespaces 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_list_resource_namespaces --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_create_resource_namespaces 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_create_resource_namespaces --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_get_count_2247 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_get_count_2247 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_resource_namespaces 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_resource_namespaces --json
ParameterTypeRequiredDescription
unified_rbac_resource_namespace_id string yes Path parameter `unifiedRbacResourceNamespace-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_get_resource_namespaces 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_get_resource_namespaces --json
ParameterTypeRequiredDescription
unified_rbac_resource_namespace_id string yes Path parameter `unifiedRbacResourceNamespace-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_update_resource_namespaces 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_update_resource_namespaces --json
ParameterTypeRequiredDescription
unified_rbac_resource_namespace_id string yes Path parameter `unifiedRbacResourceNamespace-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_list_resource_actions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_list_resource_actions --json
ParameterTypeRequiredDescription
unified_rbac_resource_namespace_id string yes Path parameter `unifiedRbacResourceNamespace-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_create_resource_actions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_create_resource_actions --json
ParameterTypeRequiredDescription
unified_rbac_resource_namespace_id string yes Path parameter `unifiedRbacResourceNamespace-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_resource_actions_get_count_1b0d 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_resource_actions_get_count_1b0d --json
ParameterTypeRequiredDescription
unified_rbac_resource_namespace_id string yes Path parameter `unifiedRbacResourceNamespace-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_delete_resource_actions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_delete_resource_actions --json
ParameterTypeRequiredDescription
unified_rbac_resource_namespace_id string yes Path parameter `unifiedRbacResourceNamespace-id`.
unified_rbac_resource_action_id string yes Path parameter `unifiedRbacResourceAction-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_get_resource_actions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_get_resource_actions --json
ParameterTypeRequiredDescription
unified_rbac_resource_namespace_id string yes Path parameter `unifiedRbacResourceNamespace-id`.
unified_rbac_resource_action_id string yes Path parameter `unifiedRbacResourceAction-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_update_resource_actions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_resource_namespaces_update_resource_actions --json
ParameterTypeRequiredDescription
unified_rbac_resource_namespace_id string yes Path parameter `unifiedRbacResourceNamespace-id`.
unified_rbac_resource_action_id string yes Path parameter `unifiedRbacResourceAction-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_assignment_schedule_instances 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_assignment_schedule_instances --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_assignment_schedule_instances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_assignment_schedule_instances --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_count_e055 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_count_e055 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_filter_by_current_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_filter_by_current_user --json
ParameterTypeRequiredDescription
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_assignment_schedule_instances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_assignment_schedule_instances --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_instance_id string yes Path parameter `unifiedRoleAssignmentScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_assignment_schedule_instances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_assignment_schedule_instances --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_instance_id string yes Path parameter `unifiedRoleAssignmentScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_assignment_schedule_instances 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_assignment_schedule_instances --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_instance_id string yes Path parameter `unifiedRoleAssignmentScheduleInstance-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_activated_using 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_activated_using --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_instance_id string yes Path parameter `unifiedRoleAssignmentScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_app_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_app_scope --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_instance_id string yes Path parameter `unifiedRoleAssignmentScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_directory_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_directory_scope --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_instance_id string yes Path parameter `unifiedRoleAssignmentScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_principal --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_instance_id string yes Path parameter `unifiedRoleAssignmentScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_role_definition 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_instances_get_role_definition --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_instance_id string yes Path parameter `unifiedRoleAssignmentScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_assignment_schedule_requests 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_assignment_schedule_requests --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_assignment_schedule_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_assignment_schedule_requests --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_count_6fe6 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_count_6fe6 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_filter_by_current_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_filter_by_current_user --json
ParameterTypeRequiredDescription
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_assignment_schedule_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_assignment_schedule_requests --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_request_id string yes Path parameter `unifiedRoleAssignmentScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_assignment_schedule_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_assignment_schedule_requests --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_request_id string yes Path parameter `unifiedRoleAssignmentScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_assignment_schedule_requests 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_assignment_schedule_requests --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_request_id string yes Path parameter `unifiedRoleAssignmentScheduleRequest-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_activated_using 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_activated_using --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_request_id string yes Path parameter `unifiedRoleAssignmentScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_app_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_app_scope --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_request_id string yes Path parameter `unifiedRoleAssignmentScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_unified_role_assignment_schedule_request_cancel 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_unified_role_assignment_schedule_request_cancel --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_request_id string yes Path parameter `unifiedRoleAssignmentScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_directory_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_directory_scope --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_request_id string yes Path parameter `unifiedRoleAssignmentScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_principal --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_request_id string yes Path parameter `unifiedRoleAssignmentScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_role_definition 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_role_definition --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_request_id string yes Path parameter `unifiedRoleAssignmentScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_target_schedule 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedule_requests_get_target_schedule --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_request_id string yes Path parameter `unifiedRoleAssignmentScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_assignment_schedules 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_assignment_schedules --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_assignment_schedules 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_assignment_schedules --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_count_6f04 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_count_6f04 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_filter_by_current_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_filter_by_current_user --json
ParameterTypeRequiredDescription
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_assignment_schedules 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_assignment_schedules --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_id string yes Path parameter `unifiedRoleAssignmentSchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_assignment_schedules 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_assignment_schedules --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_id string yes Path parameter `unifiedRoleAssignmentSchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_assignment_schedules 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_assignment_schedules --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_id string yes Path parameter `unifiedRoleAssignmentSchedule-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_activated_using 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_activated_using --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_id string yes Path parameter `unifiedRoleAssignmentSchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_app_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_app_scope --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_id string yes Path parameter `unifiedRoleAssignmentSchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_directory_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_directory_scope --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_id string yes Path parameter `unifiedRoleAssignmentSchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_principal --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_id string yes Path parameter `unifiedRoleAssignmentSchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_role_definition 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignment_schedules_get_role_definition --json
ParameterTypeRequiredDescription
unified_role_assignment_schedule_id string yes Path parameter `unifiedRoleAssignmentSchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_assignments 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_assignments --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_assignments 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_assignments --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_count_bd5b 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_count_bd5b --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_assignments 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_assignments --json
ParameterTypeRequiredDescription
unified_role_assignment_id string yes Path parameter `unifiedRoleAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_assignments 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_assignments --json
ParameterTypeRequiredDescription
unified_role_assignment_id string yes Path parameter `unifiedRoleAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_assignments 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_assignments --json
ParameterTypeRequiredDescription
unified_role_assignment_id string yes Path parameter `unifiedRoleAssignment-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_delete_app_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_delete_app_scope --json
ParameterTypeRequiredDescription
unified_role_assignment_id string yes Path parameter `unifiedRoleAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_app_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_app_scope --json
ParameterTypeRequiredDescription
unified_role_assignment_id string yes Path parameter `unifiedRoleAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_update_app_scope 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_update_app_scope --json
ParameterTypeRequiredDescription
unified_role_assignment_id string yes Path parameter `unifiedRoleAssignment-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_directory_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_directory_scope --json
ParameterTypeRequiredDescription
unified_role_assignment_id string yes Path parameter `unifiedRoleAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_principal --json
ParameterTypeRequiredDescription
unified_role_assignment_id string yes Path parameter `unifiedRoleAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_role_definition 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_assignments_get_role_definition --json
ParameterTypeRequiredDescription
unified_role_assignment_id string yes Path parameter `unifiedRoleAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_definitions 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_definitions --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_definitions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_definitions --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_get_count_0578 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_get_count_0578 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_definitions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_definitions --json
ParameterTypeRequiredDescription
unified_role_definition_id string yes Path parameter `unifiedRoleDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_definitions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_definitions --json
ParameterTypeRequiredDescription
unified_role_definition_id string yes Path parameter `unifiedRoleDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_definitions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_definitions --json
ParameterTypeRequiredDescription
unified_role_definition_id string yes Path parameter `unifiedRoleDefinition-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_list_inherits_permissions_from 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_list_inherits_permissions_from --json
ParameterTypeRequiredDescription
unified_role_definition_id string yes Path parameter `unifiedRoleDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_create_inherits_permissions_from 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_create_inherits_permissions_from --json
ParameterTypeRequiredDescription
unified_role_definition_id string yes Path parameter `unifiedRoleDefinition-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_inherits_permissions_from_get_count_f7ad 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_inherits_permissions_from_get_count_f7ad --json
ParameterTypeRequiredDescription
unified_role_definition_id string yes Path parameter `unifiedRoleDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_delete_inherits_permissions_from 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_delete_inherits_permissions_from --json
ParameterTypeRequiredDescription
unified_role_definition_id string yes Path parameter `unifiedRoleDefinition-id`.
unified_role_definition_id1 string yes Path parameter `unifiedRoleDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_get_inherits_permissions_from 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_get_inherits_permissions_from --json
ParameterTypeRequiredDescription
unified_role_definition_id string yes Path parameter `unifiedRoleDefinition-id`.
unified_role_definition_id1 string yes Path parameter `unifiedRoleDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_update_inherits_permissions_from 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_definitions_update_inherits_permissions_from --json
ParameterTypeRequiredDescription
unified_role_definition_id string yes Path parameter `unifiedRoleDefinition-id`.
unified_role_definition_id1 string yes Path parameter `unifiedRoleDefinition-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_eligibility_schedule_instances 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_eligibility_schedule_instances --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_eligibility_schedule_instances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_eligibility_schedule_instances --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_count_7642 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_count_7642 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_filter_by_current_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_filter_by_current_user --json
ParameterTypeRequiredDescription
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_eligibility_schedule_instances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_eligibility_schedule_instances --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_instance_id string yes Path parameter `unifiedRoleEligibilityScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_eligibility_schedule_instances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_eligibility_schedule_instances --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_instance_id string yes Path parameter `unifiedRoleEligibilityScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_eligibility_schedule_instances 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_eligibility_schedule_instances --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_instance_id string yes Path parameter `unifiedRoleEligibilityScheduleInstance-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_app_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_app_scope --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_instance_id string yes Path parameter `unifiedRoleEligibilityScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_directory_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_directory_scope --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_instance_id string yes Path parameter `unifiedRoleEligibilityScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_principal --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_instance_id string yes Path parameter `unifiedRoleEligibilityScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_role_definition 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_instances_get_role_definition --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_instance_id string yes Path parameter `unifiedRoleEligibilityScheduleInstance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_eligibility_schedule_requests 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_eligibility_schedule_requests --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_eligibility_schedule_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_eligibility_schedule_requests --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_count_68f0 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_count_68f0 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_filter_by_current_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_filter_by_current_user --json
ParameterTypeRequiredDescription
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_eligibility_schedule_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_eligibility_schedule_requests --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_request_id string yes Path parameter `unifiedRoleEligibilityScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_eligibility_schedule_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_eligibility_schedule_requests --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_request_id string yes Path parameter `unifiedRoleEligibilityScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_eligibility_schedule_requests 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_eligibility_schedule_requests --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_request_id string yes Path parameter `unifiedRoleEligibilityScheduleRequest-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_app_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_app_scope --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_request_id string yes Path parameter `unifiedRoleEligibilityScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_unified_role_eligibility_schedule_request_cancel 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_unified_role_eligibility_schedule_request_cancel --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_request_id string yes Path parameter `unifiedRoleEligibilityScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_directory_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_directory_scope --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_request_id string yes Path parameter `unifiedRoleEligibilityScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_principal --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_request_id string yes Path parameter `unifiedRoleEligibilityScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_role_definition 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_role_definition --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_request_id string yes Path parameter `unifiedRoleEligibilityScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_target_schedule 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedule_requests_get_target_schedule --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_request_id string yes Path parameter `unifiedRoleEligibilityScheduleRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_eligibility_schedules 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_list_role_eligibility_schedules --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_eligibility_schedules 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_create_role_eligibility_schedules --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_count_b25d 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_count_b25d --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_filter_by_current_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_filter_by_current_user --json
ParameterTypeRequiredDescription
on string yes Path parameter `on`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_eligibility_schedules 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_delete_role_eligibility_schedules --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_id string yes Path parameter `unifiedRoleEligibilitySchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_eligibility_schedules 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_get_role_eligibility_schedules --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_id string yes Path parameter `unifiedRoleEligibilitySchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_eligibility_schedules 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_update_role_eligibility_schedules --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_id string yes Path parameter `unifiedRoleEligibilitySchedule-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_app_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_app_scope --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_id string yes Path parameter `unifiedRoleEligibilitySchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_directory_scope 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_directory_scope --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_id string yes Path parameter `unifiedRoleEligibilitySchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_principal --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_id string yes Path parameter `unifiedRoleEligibilitySchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_role_definition 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_role_management_directory_role_eligibility_schedules_get_role_definition --json
ParameterTypeRequiredDescription
unified_role_eligibility_schedule_id string yes Path parameter `unifiedRoleEligibilitySchedule-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_list_service_principal 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_list_service_principal --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_create_service_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_create_service_principal --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_delete_service_principal_by_app_id 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_delete_service_principal_by_app_id --json
ParameterTypeRequiredDescription
app_id string yes Path parameter `appId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_get_service_principal_by_app_id 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_get_service_principal_by_app_id --json
ParameterTypeRequiredDescription
app_id string yes Path parameter `appId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_update_service_principal_by_app_id 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_update_service_principal_by_app_id --json
ParameterTypeRequiredDescription
app_id string yes Path parameter `appId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_get_count_da6d 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_count_da6d --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_delta 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_delta --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_available_extension_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_available_extension_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_get_by_ids 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_by_ids --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_validate_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_validate_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_delete_service_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_delete_service_principal --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_get_service_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_get_service_principal --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_update_service_principal 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_update_service_principal --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_add_key 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_add_key --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_add_password 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_add_password --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_add_token_signing_certificate 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_add_token_signing_certificate --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_list_app_management_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_app_management_policies --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_app_management_policies_get_count_5cee 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_app_management_policies_get_count_5cee --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_app_management_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_app_management_policies --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
app_management_policy_id string yes Path parameter `appManagementPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_app_role_assigned_to 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_app_role_assigned_to --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_create_app_role_assigned_to 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_create_app_role_assigned_to --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_app_role_assigned_to_get_count_705c 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_app_role_assigned_to_get_count_705c --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_delete_app_role_assigned_to 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_delete_app_role_assigned_to --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
app_role_assignment_id string yes Path parameter `appRoleAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_app_role_assigned_to 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_app_role_assigned_to --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
app_role_assignment_id string yes Path parameter `appRoleAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_update_app_role_assigned_to 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_update_app_role_assigned_to --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
app_role_assignment_id string yes Path parameter `appRoleAssignment-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_list_app_role_assignments 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_app_role_assignments --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_create_app_role_assignments 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_create_app_role_assignments --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_app_role_assignments_get_count_4e95 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_app_role_assignments_get_count_4e95 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_delete_app_role_assignments 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_delete_app_role_assignments --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
app_role_assignment_id string yes Path parameter `appRoleAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_app_role_assignments 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_app_role_assignments --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
app_role_assignment_id string yes Path parameter `appRoleAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_update_app_role_assignments 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_update_app_role_assignments --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
app_role_assignment_id string yes Path parameter `appRoleAssignment-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_check_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_check_member_groups --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_check_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_check_member_objects --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_list_claims_mapping_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_claims_mapping_policies --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_claims_mapping_policies_get_count_832a 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_claims_mapping_policies_get_count_832a --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_claims_mapping_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_claims_mapping_policies --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_claims_mapping_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_claims_mapping_policies --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_claims_mapping_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_claims_mapping_policies --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_claims_mapping_policies_delete_ref_claims_mapping_policy 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_claims_mapping_policies_delete_ref_claims_mapping_policy --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
claims_mapping_policy_id string yes Path parameter `claimsMappingPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_created_objects 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_created_objects --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_created_objects_get_count_0714 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_created_objects_get_count_0714 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_created_objects_as_service_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_created_objects_as_service_principal --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_created_objects_get_count_as_service_principal_768a 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_created_objects_get_count_as_service_principal_768a --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_created_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_created_objects --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_created_objects_as_service_principal 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_created_objects_as_service_principal --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_delegated_permission_classifications 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_delegated_permission_classifications --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_create_delegated_permission_classifications 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_create_delegated_permission_classifications --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_delegated_permission_classifications_get_count_31f9 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_delegated_permission_classifications_get_count_31f9 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_delete_delegated_permission_classifications 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_delete_delegated_permission_classifications --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
delegated_permission_classification_id string yes Path parameter `delegatedPermissionClassification-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_delegated_permission_classifications 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_delegated_permission_classifications --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
delegated_permission_classification_id string yes Path parameter `delegatedPermissionClassification-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_update_delegated_permission_classifications 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_update_delegated_permission_classifications --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
delegated_permission_classification_id string yes Path parameter `delegatedPermissionClassification-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_list_endpoints 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_endpoints --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_create_endpoints 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_create_endpoints --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_endpoints_get_count_c0e0 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_endpoints_get_count_c0e0 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_delete_endpoints 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_delete_endpoints --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
endpoint_id string yes Path parameter `endpoint-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_endpoints 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_endpoints --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
endpoint_id string yes Path parameter `endpoint-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_update_endpoints 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_update_endpoints --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
endpoint_id string yes Path parameter `endpoint-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_list_federated_identity_credentials 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_federated_identity_credentials --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_create_federated_identity_credentials 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_create_federated_identity_credentials --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_federated_identity_credentials_delete_by_name 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_federated_identity_credentials_delete_by_name --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_federated_identity_credentials_get_by_name 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_federated_identity_credentials_get_by_name --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_federated_identity_credentials_update_by_name 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_federated_identity_credentials_update_by_name --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_federated_identity_credentials_get_count_d9cd 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_federated_identity_credentials_get_count_d9cd --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_delete_federated_identity_credentials 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_delete_federated_identity_credentials --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
federated_identity_credential_id string yes Path parameter `federatedIdentityCredential-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_federated_identity_credentials 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_federated_identity_credentials --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
federated_identity_credential_id string yes Path parameter `federatedIdentityCredential-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_update_federated_identity_credentials 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_update_federated_identity_credentials --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
federated_identity_credential_id string yes Path parameter `federatedIdentityCredential-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_get_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_get_member_groups --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_get_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_get_member_objects --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_list_home_realm_discovery_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_home_realm_discovery_policies --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_home_realm_discovery_policies_get_count_d161 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_home_realm_discovery_policies_get_count_d161 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_home_realm_discovery_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_home_realm_discovery_policies --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_home_realm_discovery_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_home_realm_discovery_policies --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_home_realm_discovery_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_home_realm_discovery_policies --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_home_realm_discovery_policies_delete_ref_home_realm_discovery_policy 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_home_realm_discovery_policies_delete_ref_home_realm_discovery_policy --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
home_realm_discovery_policy_id string yes Path parameter `homeRealmDiscoveryPolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_member_of 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_member_of --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_member_of_get_count_be11 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_member_of_get_count_be11 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_member_of_as_administrative_unit 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_member_of_as_administrative_unit --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_member_of_get_count_as_administrative_unit_472e 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_member_of_get_count_as_administrative_unit_472e --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_member_of_as_directory_role 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_member_of_as_directory_role --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_member_of_get_count_as_directory_role_fa4e 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_member_of_get_count_as_directory_role_fa4e --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_member_of_as_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_member_of_as_group --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_member_of_get_count_as_group_96d9 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_member_of_get_count_as_group_96d9 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_member_of 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_member_of --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_member_of_as_administrative_unit 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_member_of_as_administrative_unit --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_member_of_as_directory_role 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_member_of_as_directory_role --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_member_of_as_group 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_member_of_as_group --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_oauth2_permission_grants 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_oauth2_permission_grants --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_oauth2_permission_grants_get_count_f9dc 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_oauth2_permission_grants_get_count_f9dc --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_oauth2_permission_grants 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_oauth2_permission_grants --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
o_auth2_permission_grant_id string yes Path parameter `oAuth2PermissionGrant-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_7ae7 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_7ae7 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_app_role_assignment 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_app_role_assignment --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_app_role_assignment_793c 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_app_role_assignment_793c --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_application 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_application --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_application_2b95 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_application_2b95 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_endpoint 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_endpoint --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_endpoint_4594 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_endpoint_4594 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_group --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_group_fc2e 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_group_fc2e --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_service_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_owned_objects_as_service_principal --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_service_principal_19c0 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_owned_objects_get_count_as_service_principal_19c0 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_app_role_assignment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_app_role_assignment --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_application 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_application --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_endpoint 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_endpoint --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_group 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_group --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_service_principal 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_owned_objects_as_service_principal --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_owners 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_owners --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_ec9a 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_ec9a --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_owners 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_owners --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_owners 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_owners --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_owners 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_owners --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_list_owners_as_app_role_assignment 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_owners_as_app_role_assignment --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_as_app_role_assignment_abce 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_as_app_role_assignment_abce --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_owners_as_endpoint 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_owners_as_endpoint --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_as_endpoint_9454 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_as_endpoint_9454 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_owners_as_service_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_owners_as_service_principal --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_as_service_principal_c35b 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_as_service_principal_c35b --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_owners_as_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_owners_as_user --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_as_user_aab7 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_owners_get_count_as_user_aab7 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_owners_delete_ref_directory_object 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_owners_delete_ref_directory_object --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_owners_as_app_role_assignment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_owners_as_app_role_assignment --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_owners_as_endpoint 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_owners_as_endpoint --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_owners_as_service_principal 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_owners_as_service_principal --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_owners_as_user 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_owners_as_user --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_delete_remote_desktop_security_configuration 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_delete_remote_desktop_security_configuration --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_remote_desktop_security_configuration 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_remote_desktop_security_configuration --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_update_remote_desktop_security_configuration 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_update_remote_desktop_security_configuration --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_list_approved_client_apps 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_list_approved_client_apps --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_create_approved_client_apps 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_create_approved_client_apps --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_approved_client_apps_get_count_bea1 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_approved_client_apps_get_count_bea1 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_delete_approved_client_apps 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_delete_approved_client_apps --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
approved_client_app_id string yes Path parameter `approvedClientApp-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_get_approved_client_apps 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_get_approved_client_apps --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
approved_client_app_id string yes Path parameter `approvedClientApp-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_update_approved_client_apps 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_update_approved_client_apps --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
approved_client_app_id string yes Path parameter `approvedClientApp-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_list_target_device_groups 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_list_target_device_groups --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_create_target_device_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_create_target_device_groups --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_target_device_groups_get_count_51f5 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_target_device_groups_get_count_51f5 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_delete_target_device_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_delete_target_device_groups --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
target_device_group_id string yes Path parameter `targetDeviceGroup-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_get_target_device_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_get_target_device_groups --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
target_device_group_id string yes Path parameter `targetDeviceGroup-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_update_target_device_groups 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_remote_desktop_security_configuration_update_target_device_groups --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
target_device_group_id string yes Path parameter `targetDeviceGroup-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_remove_key 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_remove_key --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_remove_password 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_remove_password --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_restore 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_restore --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_delete_synchronization 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_delete_synchronization --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_synchronization 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_synchronization --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_set_synchronization 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_set_synchronization --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_acquire_access_token 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_acquire_access_token --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_list_jobs 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_list_jobs --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_create_jobs 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_create_jobs --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_get_count_5eba 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_get_count_5eba --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_validate_credentials 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_validate_credentials --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_delete_jobs 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_delete_jobs --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_get_jobs 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_get_jobs --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_update_jobs 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_update_jobs --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_delete_bulk_upload 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_delete_bulk_upload --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_get_bulk_upload 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_get_bulk_upload --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_update_bulk_upload 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_update_bulk_upload --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_delete_bulk_upload_content 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_delete_bulk_upload_content --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_get_bulk_upload_content 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_get_bulk_upload_content --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_update_bulk_upload_content 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_update_bulk_upload_content --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_pause 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_pause --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_provision_on_demand 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_provision_on_demand --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_restart 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_restart --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_delete_schema 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_delete_schema --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_get_schema 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_get_schema --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_update_schema 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_update_schema --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_list_directories 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_list_directories --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_create_directories 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_create_directories --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_directories_get_count_af56 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_directories_get_count_af56 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_delete_directories 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_delete_directories --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-id`.
directory_definition_id string yes Path parameter `directoryDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_get_directories 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_get_directories --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-id`.
directory_definition_id string yes Path parameter `directoryDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_update_directories 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_jobs_schema_update_directories --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-id`.
directory_definition_id string yes Path parameter `directoryDefinition-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_directories_directory_definition_discover 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_directories_directory_definition_discover --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-id`.
directory_definition_id string yes Path parameter `directoryDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_filter_operators 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_filter_operators --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_functions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_functions --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_parse_expression 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_schema_parse_expression --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_start 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_start --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_validate_credentials 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_jobs_synchronization_job_validate_credentials --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_job_id string yes Path parameter `synchronizationJob-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_set_secrets 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_set_secrets --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_secrets_get_count_65c9 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_secrets_get_count_65c9 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_list_templates 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_list_templates --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_create_templates 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_create_templates --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_get_count_1c9d 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_get_count_1c9d --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_delete_templates 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_delete_templates --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_get_templates 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_get_templates --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_update_templates 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_update_templates --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_delete_schema 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_delete_schema --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_get_schema 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_get_schema --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_update_schema 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_update_schema --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_list_directories 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_list_directories --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_create_directories 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_create_directories --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_directories_get_count_f937 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_directories_get_count_f937 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_delete_directories 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_delete_directories --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-id`.
directory_definition_id string yes Path parameter `directoryDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_get_directories 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_get_directories --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-id`.
directory_definition_id string yes Path parameter `directoryDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_update_directories 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_synchronization_templates_schema_update_directories --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-id`.
directory_definition_id string yes Path parameter `directoryDefinition-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_directories_directory_definition_discover 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_directories_directory_definition_discover --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-id`.
directory_definition_id string yes Path parameter `directoryDefinition-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_filter_operators 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_filter_operators --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_functions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_functions --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_parse_expression 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_service_principal_synchronization_templates_synchronization_template_schema_parse_expression --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
synchronization_template_id string yes Path parameter `synchronizationTemplate-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_list_token_issuance_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_token_issuance_policies --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_token_issuance_policies_get_count_578b 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_token_issuance_policies_get_count_578b --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_token_issuance_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_token_issuance_policies --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_token_issuance_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_token_issuance_policies --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_token_issuance_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_token_issuance_policies --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_token_issuance_policies_delete_ref_token_issuance_policy 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_token_issuance_policies_delete_ref_token_issuance_policy --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
token_issuance_policy_id string yes Path parameter `tokenIssuancePolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_token_lifetime_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_token_lifetime_policies --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_token_lifetime_policies_get_count_4121 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_token_lifetime_policies_get_count_4121 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_token_lifetime_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_delete_ref_token_lifetime_policies --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_token_lifetime_policies 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_ref_token_lifetime_policies --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_token_lifetime_policies 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_create_ref_token_lifetime_policies --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_service_principals_token_lifetime_policies_delete_ref_token_lifetime_policy 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_token_lifetime_policies_delete_ref_token_lifetime_policy --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
token_lifetime_policy_id string yes Path parameter `tokenLifetimePolicy-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_transitive_member_of 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_transitive_member_of --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_transitive_member_of_get_count_4794 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_transitive_member_of_get_count_4794 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_transitive_member_of_as_administrative_unit 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_transitive_member_of_as_administrative_unit --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_transitive_member_of_get_count_as_administrative_unit_4450 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_transitive_member_of_get_count_as_administrative_unit_4450 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_transitive_member_of_as_directory_role 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_transitive_member_of_as_directory_role --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_transitive_member_of_get_count_as_directory_role_8951 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_transitive_member_of_get_count_as_directory_role_8951 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_list_transitive_member_of_as_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_list_transitive_member_of_as_group --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_transitive_member_of_get_count_as_group_e005 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_transitive_member_of_get_count_as_group_e005 --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_transitive_member_of 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_transitive_member_of --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_transitive_member_of_as_administrative_unit 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_transitive_member_of_as_administrative_unit --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_transitive_member_of_as_directory_role 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_transitive_member_of_as_directory_role --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_service_principals_get_transitive_member_of_as_group 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_service_principals_get_transitive_member_of_as_group --json
ParameterTypeRequiredDescription
service_principal_id string yes Path parameter `servicePrincipal-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_list_subscribed_sku 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_list_subscribed_sku --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_create_subscribed_sku 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_create_subscribed_sku --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_delete_subscribed_sku 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_delete_subscribed_sku --json
ParameterTypeRequiredDescription
subscribed_sku_id string yes Path parameter `subscribedSku-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 directory queries.
microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_get_subscribed_sku 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_get_subscribed_sku --json
ParameterTypeRequiredDescription
subscribed_sku_id string yes Path parameter `subscribedSku-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 directory queries.
microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_update_subscribed_sku 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_subscribed_skus_subscribed_sku_update_subscribed_sku --json
ParameterTypeRequiredDescription
subscribed_sku_id string yes Path parameter `subscribedSku-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_tenant_relationship_get_tenant_relationship 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_tenant_relationship_get_tenant_relationship --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_tenant_relationship_update_tenant_relationship 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_tenant_relationship_update_tenant_relationship --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_list_delegated_admin_customers 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_list_delegated_admin_customers --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_create_delegated_admin_customers 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_create_delegated_admin_customers --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_get_count_e293 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_get_count_e293 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delete_delegated_admin_customers 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delete_delegated_admin_customers --json
ParameterTypeRequiredDescription
delegated_admin_customer_id string yes Path parameter `delegatedAdminCustomer-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_get_delegated_admin_customers 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_get_delegated_admin_customers --json
ParameterTypeRequiredDescription
delegated_admin_customer_id string yes Path parameter `delegatedAdminCustomer-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_update_delegated_admin_customers 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_update_delegated_admin_customers --json
ParameterTypeRequiredDescription
delegated_admin_customer_id string yes Path parameter `delegatedAdminCustomer-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_list_service_management_details 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_list_service_management_details --json
ParameterTypeRequiredDescription
delegated_admin_customer_id string yes Path parameter `delegatedAdminCustomer-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_create_service_management_details 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_create_service_management_details --json
ParameterTypeRequiredDescription
delegated_admin_customer_id string yes Path parameter `delegatedAdminCustomer-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_service_management_details_get_count_d662 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_service_management_details_get_count_d662 --json
ParameterTypeRequiredDescription
delegated_admin_customer_id string yes Path parameter `delegatedAdminCustomer-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_delete_service_management_details 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_delete_service_management_details --json
ParameterTypeRequiredDescription
delegated_admin_customer_id string yes Path parameter `delegatedAdminCustomer-id`.
delegated_admin_service_management_detail_id string yes Path parameter `delegatedAdminServiceManagementDetail-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_get_service_management_details 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_get_service_management_details --json
ParameterTypeRequiredDescription
delegated_admin_customer_id string yes Path parameter `delegatedAdminCustomer-id`.
delegated_admin_service_management_detail_id string yes Path parameter `delegatedAdminServiceManagementDetail-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_update_service_management_details 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_customers_update_service_management_details --json
ParameterTypeRequiredDescription
delegated_admin_customer_id string yes Path parameter `delegatedAdminCustomer-id`.
delegated_admin_service_management_detail_id string yes Path parameter `delegatedAdminServiceManagementDetail-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_list_delegated_admin_relationships 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_list_delegated_admin_relationships --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_create_delegated_admin_relationships 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_create_delegated_admin_relationships --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_count_9d12 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_count_9d12 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delete_delegated_admin_relationships 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delete_delegated_admin_relationships --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_get_delegated_admin_relationships 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_get_delegated_admin_relationships --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_update_delegated_admin_relationships 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_update_delegated_admin_relationships --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_list_access_assignments 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_list_access_assignments --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_create_access_assignments 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_create_access_assignments --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_access_assignments_get_count_8cbf 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_access_assignments_get_count_8cbf --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_delete_access_assignments 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_delete_access_assignments --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-id`.
delegated_admin_access_assignment_id string yes Path parameter `delegatedAdminAccessAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_access_assignments 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_access_assignments --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-id`.
delegated_admin_access_assignment_id string yes Path parameter `delegatedAdminAccessAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_update_access_assignments 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_update_access_assignments --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-id`.
delegated_admin_access_assignment_id string yes Path parameter `delegatedAdminAccessAssignment-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_list_operations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_list_operations --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_create_operations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_create_operations --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_operations_get_count_3beb 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_operations_get_count_3beb --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_delete_operations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_delete_operations --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-id`.
delegated_admin_relationship_operation_id string yes Path parameter `delegatedAdminRelationshipOperation-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_operations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_operations --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-id`.
delegated_admin_relationship_operation_id string yes Path parameter `delegatedAdminRelationshipOperation-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_update_operations 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_update_operations --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-id`.
delegated_admin_relationship_operation_id string yes Path parameter `delegatedAdminRelationshipOperation-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_list_requests 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_list_requests --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_create_requests 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_create_requests --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_requests_get_count_f3a6 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_requests_get_count_f3a6 --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_delete_requests 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_delete_requests --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-id`.
delegated_admin_relationship_request_id string yes Path parameter `delegatedAdminRelationshipRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_requests 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_get_requests --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-id`.
delegated_admin_relationship_request_id string yes Path parameter `delegatedAdminRelationshipRequest-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_update_requests 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_delegated_admin_relationships_update_requests --json
ParameterTypeRequiredDescription
delegated_admin_relationship_id string yes Path parameter `delegatedAdminRelationship-id`.
delegated_admin_relationship_request_id string yes Path parameter `delegatedAdminRelationshipRequest-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_find_tenant_information_by_domain_name 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_find_tenant_information_by_domain_name --json
ParameterTypeRequiredDescription
domain_name string yes Path parameter `domainName`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_find_tenant_information_by_tenant_id 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_find_tenant_information_by_tenant_id --json
ParameterTypeRequiredDescription
tenant_id string yes Path parameter `tenantId`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_get_multi_tenant_organization 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_get_multi_tenant_organization --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_update_multi_tenant_organization 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_update_multi_tenant_organization --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_get_join_request 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_get_join_request --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_update_join_request 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_update_join_request --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_list_tenants 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_list_tenants --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_create_tenants 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_create_tenants --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_tenants_get_count_3393 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_tenants_get_count_3393 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_delete_tenants 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_delete_tenants --json
ParameterTypeRequiredDescription
multi_tenant_organization_member_id string yes Path parameter `multiTenantOrganizationMember-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_get_tenants 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_get_tenants --json
ParameterTypeRequiredDescription
multi_tenant_organization_member_id string yes Path parameter `multiTenantOrganizationMember-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 directory queries.
microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_update_tenants 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_tenant_relationships_multi_tenant_organization_update_tenants --json
ParameterTypeRequiredDescription
multi_tenant_organization_member_id string yes Path parameter `multiTenantOrganizationMember-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_user_list_user 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_list_user --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_users_user_create_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_create_user --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_user_delete_user_by_user_principal_name 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_delete_user_by_user_principal_name --json
ParameterTypeRequiredDescription
user_principal_name string yes Path parameter `userPrincipalName`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_users_user_get_user_by_user_principal_name 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_get_user_by_user_principal_name --json
ParameterTypeRequiredDescription
user_principal_name string yes Path parameter `userPrincipalName`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_users_user_update_user_by_user_principal_name 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_update_user_by_user_principal_name --json
ParameterTypeRequiredDescription
user_principal_name string yes Path parameter `userPrincipalName`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_get_count_ee47 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_count_ee47 --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_users_delta 11 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_delta --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_available_extension_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_available_extension_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_get_by_ids 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_by_ids --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_validate_properties 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_validate_properties --json
ParameterTypeRequiredDescription
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
if_match string no Optional Microsoft Graph `If-Match` header for conditional updates or deletes.
prefer string no Optional Microsoft Graph `Prefer` header.
consistency_level string no Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_user_delete_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_delete_user --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_user_get_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_get_user --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_user_update_user 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_update_user --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_list_activities 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_activities --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_create_activities 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_create_activities --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_activities_get_count_39cc 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_activities_get_count_39cc --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_user_activities_recent 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_activities_recent --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_delete_activities 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_delete_activities --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
user_activity_id string yes Path parameter `userActivity-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_activities 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_activities --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
user_activity_id string yes Path parameter `userActivity-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_update_activities 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_update_activities --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
user_activity_id string yes Path parameter `userActivity-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_activities_list_history_items 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_activities_list_history_items --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
user_activity_id string yes Path parameter `userActivity-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_activities_create_history_items 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_activities_create_history_items --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
user_activity_id string yes Path parameter `userActivity-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_activities_history_items_get_count_625e 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_activities_history_items_get_count_625e --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
user_activity_id string yes Path parameter `userActivity-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_activities_delete_history_items 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_activities_delete_history_items --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
user_activity_id string yes Path parameter `userActivity-id`.
activity_history_item_id string yes Path parameter `activityHistoryItem-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_activities_get_history_items 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_activities_get_history_items --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
user_activity_id string yes Path parameter `userActivity-id`.
activity_history_item_id string yes Path parameter `activityHistoryItem-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_activities_update_history_items 15 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_activities_update_history_items --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
user_activity_id string yes Path parameter `userActivity-id`.
activity_history_item_id string yes Path parameter `activityHistoryItem-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_activities_history_items_get_activity 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_activities_history_items_get_activity --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
user_activity_id string yes Path parameter `userActivity-id`.
activity_history_item_id string yes Path parameter `activityHistoryItem-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_agreement_acceptances 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_agreement_acceptances --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_agreement_acceptances_get_count_b659 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_agreement_acceptances_get_count_b659 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_agreement_acceptances 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_agreement_acceptances --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
agreement_acceptance_id string yes Path parameter `agreementAcceptance-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_app_role_assignments 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_app_role_assignments --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_create_app_role_assignments 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_create_app_role_assignments --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_app_role_assignments_get_count_d180 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_app_role_assignments_get_count_d180 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_delete_app_role_assignments 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_delete_app_role_assignments --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
app_role_assignment_id string yes Path parameter `appRoleAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_app_role_assignments 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_app_role_assignments --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
app_role_assignment_id string yes Path parameter `appRoleAssignment-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_update_app_role_assignments 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_update_app_role_assignments --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
app_role_assignment_id string yes Path parameter `appRoleAssignment-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_user_assign_license 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_assign_license --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_delete_authentication 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_delete_authentication --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_authentication 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_authentication --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_update_authentication 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_update_authentication --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_authentication_list_email_methods 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_list_email_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_create_email_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_create_email_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_authentication_email_methods_get_count_6f5c 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_email_methods_get_count_6f5c --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_delete_email_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_delete_email_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
email_authentication_method_id string yes Path parameter `emailAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_get_email_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_get_email_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
email_authentication_method_id string yes Path parameter `emailAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_update_email_methods 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_update_email_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
email_authentication_method_id string yes Path parameter `emailAuthenticationMethod-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_authentication_list_external_authentication_methods 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_list_external_authentication_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_create_external_authentication_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_create_external_authentication_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_authentication_external_authentication_methods_get_count_d9e5 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_external_authentication_methods_get_count_d9e5 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_delete_external_authentication_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_delete_external_authentication_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
external_authentication_method_id string yes Path parameter `externalAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_get_external_authentication_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_get_external_authentication_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
external_authentication_method_id string yes Path parameter `externalAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_update_external_authentication_methods 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_update_external_authentication_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
external_authentication_method_id string yes Path parameter `externalAuthenticationMethod-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_authentication_list_fido2_methods 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_list_fido2_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_fido2_methods_get_count_9673 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_fido2_methods_get_count_9673 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_user_authentication_fido2_methods_creation_options 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_authentication_fido2_methods_creation_options --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_delete_fido2_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_delete_fido2_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
fido2_authentication_method_id string yes Path parameter `fido2AuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_get_fido2_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_get_fido2_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
fido2_authentication_method_id string yes Path parameter `fido2AuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_list_methods 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_list_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_create_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_create_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_authentication_methods_get_count_0da1 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_methods_get_count_0da1 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_get_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_get_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
authentication_method_id string yes Path parameter `authenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_update_methods 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_update_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
authentication_method_id string yes Path parameter `authenticationMethod-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_user_authentication_methods_authentication_method_reset_password 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_authentication_methods_authentication_method_reset_password --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
authentication_method_id string yes Path parameter `authenticationMethod-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_authentication_list_microsoft_authenticator_methods 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_list_microsoft_authenticator_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_microsoft_authenticator_methods_get_count_af8c 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_microsoft_authenticator_methods_get_count_af8c --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_delete_microsoft_authenticator_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_delete_microsoft_authenticator_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
microsoft_authenticator_authentication_method_id string yes Path parameter `microsoftAuthenticatorAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_get_microsoft_authenticator_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_get_microsoft_authenticator_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
microsoft_authenticator_authentication_method_id string yes Path parameter `microsoftAuthenticatorAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_microsoft_authenticator_methods_get_device 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_microsoft_authenticator_methods_get_device --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
microsoft_authenticator_authentication_method_id string yes Path parameter `microsoftAuthenticatorAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_list_operations 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_list_operations --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_create_operations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_create_operations --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_authentication_operations_get_count_40a4 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_operations_get_count_40a4 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_delete_operations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_delete_operations --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
long_running_operation_id string yes Path parameter `longRunningOperation-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_get_operations 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_get_operations --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
long_running_operation_id string yes Path parameter `longRunningOperation-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_update_operations 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_update_operations --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
long_running_operation_id string yes Path parameter `longRunningOperation-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_authentication_list_password_methods 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_list_password_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_create_password_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_create_password_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_authentication_password_methods_get_count_ec55 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_password_methods_get_count_ec55 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_get_password_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_get_password_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
password_authentication_method_id string yes Path parameter `passwordAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_list_phone_methods 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_list_phone_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_create_phone_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_create_phone_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_authentication_phone_methods_get_count_2ea0 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_phone_methods_get_count_2ea0 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_delete_phone_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_delete_phone_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
phone_authentication_method_id string yes Path parameter `phoneAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_get_phone_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_get_phone_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
phone_authentication_method_id string yes Path parameter `phoneAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_update_phone_methods 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_update_phone_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
phone_authentication_method_id string yes Path parameter `phoneAuthenticationMethod-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_user_authentication_phone_methods_phone_authentication_method_disable_sms_sign_in 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_authentication_phone_methods_phone_authentication_method_disable_sms_sign_in --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
phone_authentication_method_id string yes Path parameter `phoneAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_user_authentication_phone_methods_phone_authentication_method_enable_sms_sign_in 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_authentication_phone_methods_phone_authentication_method_enable_sms_sign_in --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
phone_authentication_method_id string yes Path parameter `phoneAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_list_platform_credential_methods 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_list_platform_credential_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_platform_credential_methods_get_count_66e6 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_platform_credential_methods_get_count_66e6 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_delete_platform_credential_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_delete_platform_credential_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
platform_credential_authentication_method_id string yes Path parameter `platformCredentialAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_get_platform_credential_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_get_platform_credential_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
platform_credential_authentication_method_id string yes Path parameter `platformCredentialAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_platform_credential_methods_get_device 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_platform_credential_methods_get_device --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
platform_credential_authentication_method_id string yes Path parameter `platformCredentialAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_list_software_oath_methods 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_list_software_oath_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_software_oath_methods_get_count_0ccd 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_software_oath_methods_get_count_0ccd --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_delete_software_oath_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_delete_software_oath_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
software_oath_authentication_method_id string yes Path parameter `softwareOathAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_get_software_oath_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_get_software_oath_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
software_oath_authentication_method_id string yes Path parameter `softwareOathAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_list_temporary_access_pass_methods 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_list_temporary_access_pass_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_create_temporary_access_pass_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_create_temporary_access_pass_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_authentication_temporary_access_pass_methods_get_count_3b4c 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_temporary_access_pass_methods_get_count_3b4c --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_delete_temporary_access_pass_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_delete_temporary_access_pass_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
temporary_access_pass_authentication_method_id string yes Path parameter `temporaryAccessPassAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_get_temporary_access_pass_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_get_temporary_access_pass_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
temporary_access_pass_authentication_method_id string yes Path parameter `temporaryAccessPassAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_list_windows_hello_for_business_methods 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_list_windows_hello_for_business_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_windows_hello_for_business_methods_get_count_0479 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_windows_hello_for_business_methods_get_count_0479 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_delete_windows_hello_for_business_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_delete_windows_hello_for_business_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
windows_hello_for_business_authentication_method_id string yes Path parameter `windowsHelloForBusinessAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_get_windows_hello_for_business_methods 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_get_windows_hello_for_business_methods --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
windows_hello_for_business_authentication_method_id string yes Path parameter `windowsHelloForBusinessAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_authentication_windows_hello_for_business_methods_get_device 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_authentication_windows_hello_for_business_methods_get_device --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
windows_hello_for_business_authentication_method_id string yes Path parameter `windowsHelloForBusinessAuthenticationMethod-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_user_change_password 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_change_password --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_user_check_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_check_member_groups --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_user_check_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_check_member_objects --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_list_created_objects 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_created_objects --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_created_objects_get_count_c0ed 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_created_objects_get_count_c0ed --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_created_objects_as_service_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_created_objects_as_service_principal --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_created_objects_get_count_as_service_principal_1751 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_created_objects_get_count_as_service_principal_1751 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_created_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_created_objects --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_created_objects_as_service_principal 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_created_objects_as_service_principal --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_device_management_troubleshooting_events 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_device_management_troubleshooting_events --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_create_device_management_troubleshooting_events 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_create_device_management_troubleshooting_events --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_device_management_troubleshooting_events_get_count_3623 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_device_management_troubleshooting_events_get_count_3623 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_delete_device_management_troubleshooting_events 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_delete_device_management_troubleshooting_events --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
device_management_troubleshooting_event_id string yes Path parameter `deviceManagementTroubleshootingEvent-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_device_management_troubleshooting_events 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_device_management_troubleshooting_events --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
device_management_troubleshooting_event_id string yes Path parameter `deviceManagementTroubleshootingEvent-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_update_device_management_troubleshooting_events 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_update_device_management_troubleshooting_events --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
device_management_troubleshooting_event_id string yes Path parameter `deviceManagementTroubleshootingEvent-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_list_direct_reports 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_direct_reports --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_direct_reports_get_count_0678 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_direct_reports_get_count_0678 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_direct_reports_as_org_contact 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_direct_reports_as_org_contact --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_direct_reports_get_count_as_org_contact_88c4 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_direct_reports_get_count_as_org_contact_88c4 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_direct_reports_as_user 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_direct_reports_as_user --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_direct_reports_get_count_as_user_c9c7 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_direct_reports_get_count_as_user_c9c7 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_direct_reports 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_direct_reports --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_direct_reports_as_org_contact 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_direct_reports_as_org_contact --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_direct_reports_as_user 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_direct_reports_as_user --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_user_export_personal_data 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_export_personal_data --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_list_extensions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_extensions --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_create_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_create_extensions --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_extensions_get_count_4b1c 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_extensions_get_count_4b1c --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_delete_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_delete_extensions --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
extension_id string yes Path parameter `extension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_extensions 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_extensions --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
extension_id string yes Path parameter `extension-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_update_extensions 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_update_extensions --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
extension_id string yes Path parameter `extension-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_user_find_meeting_times 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_find_meeting_times --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_user_get_member_groups 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_get_member_groups --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_user_get_member_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_get_member_objects --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_get_inference_classification 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_inference_classification --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_update_inference_classification 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_update_inference_classification --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_inference_classification_list_overrides 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_inference_classification_list_overrides --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_inference_classification_create_overrides 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_inference_classification_create_overrides --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_inference_classification_overrides_get_count_f355 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_inference_classification_overrides_get_count_f355 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_inference_classification_delete_overrides 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_inference_classification_delete_overrides --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
inference_classification_override_id string yes Path parameter `inferenceClassificationOverride-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_inference_classification_get_overrides 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_inference_classification_get_overrides --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
inference_classification_override_id string yes Path parameter `inferenceClassificationOverride-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_inference_classification_update_overrides 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_inference_classification_update_overrides --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
inference_classification_override_id string yes Path parameter `inferenceClassificationOverride-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_list_license_details 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_license_details --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_create_license_details 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_create_license_details --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_license_details_get_count_a83d 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_license_details_get_count_a83d --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_user_license_details_get_teams_licensing_details 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_license_details_get_teams_licensing_details --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_delete_license_details 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_delete_license_details --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
license_details_id string yes Path parameter `licenseDetails-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_license_details 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_license_details --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
license_details_id string yes Path parameter `licenseDetails-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_update_license_details 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_update_license_details --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
license_details_id string yes Path parameter `licenseDetails-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_get_manager 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_manager --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_delete_ref_manager 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_delete_ref_manager --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_ref_manager 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_ref_manager --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_update_ref_manager 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_update_ref_manager --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_list_member_of 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_member_of --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_member_of_get_count_fc20 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_member_of_get_count_fc20 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_member_of_as_administrative_unit 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_member_of_as_administrative_unit --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_member_of_get_count_as_administrative_unit_88a9 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_member_of_get_count_as_administrative_unit_88a9 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_member_of_as_directory_role 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_member_of_as_directory_role --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_member_of_get_count_as_directory_role_b036 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_member_of_get_count_as_directory_role_b036 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_member_of_as_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_member_of_as_group --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_member_of_get_count_as_group_48c0 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_member_of_get_count_as_group_48c0 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_member_of 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_member_of --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_member_of_as_administrative_unit 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_member_of_as_administrative_unit --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_member_of_as_directory_role 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_member_of_as_directory_role --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_member_of_as_group 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_member_of_as_group --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_oauth2_permission_grants 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_oauth2_permission_grants --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_oauth2_permission_grants_get_count_fb7b 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_oauth2_permission_grants_get_count_fb7b --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_oauth2_permission_grants 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_oauth2_permission_grants --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
o_auth2_permission_grant_id string yes Path parameter `oAuth2PermissionGrant-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_delete_on_premises_sync_behavior 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_delete_on_premises_sync_behavior --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_on_premises_sync_behavior 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_on_premises_sync_behavior --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_update_on_premises_sync_behavior 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_update_on_premises_sync_behavior --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_list_owned_devices 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_owned_devices --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_owned_devices_get_count_e76d 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_owned_devices_get_count_e76d --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_owned_devices_as_app_role_assignment 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_owned_devices_as_app_role_assignment --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_owned_devices_get_count_as_app_role_assignment_59f6 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_owned_devices_get_count_as_app_role_assignment_59f6 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_owned_devices_as_device 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_owned_devices_as_device --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_owned_devices_get_count_as_device_64a9 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_owned_devices_get_count_as_device_64a9 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_owned_devices_as_endpoint 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_owned_devices_as_endpoint --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_owned_devices_get_count_as_endpoint_bd17 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_owned_devices_get_count_as_endpoint_bd17 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_owned_devices 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_owned_devices --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_owned_devices_as_app_role_assignment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_owned_devices_as_app_role_assignment --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_owned_devices_as_device 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_owned_devices_as_device --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_owned_devices_as_endpoint 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_owned_devices_as_endpoint --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_owned_objects 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_owned_objects --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_owned_objects_get_count_2c09 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_owned_objects_get_count_2c09 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_owned_objects_as_application 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_owned_objects_as_application --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_owned_objects_get_count_as_application_1b6d 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_owned_objects_get_count_as_application_1b6d --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_owned_objects_as_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_owned_objects_as_group --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_owned_objects_get_count_as_group_7af3 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_owned_objects_get_count_as_group_7af3 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_owned_objects_as_service_principal 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_owned_objects_as_service_principal --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_owned_objects_get_count_as_service_principal_370f 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_owned_objects_get_count_as_service_principal_370f --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_owned_objects 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_owned_objects --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_owned_objects_as_application 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_owned_objects_as_application --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_owned_objects_as_group 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_owned_objects_as_group --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_owned_objects_as_service_principal 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_owned_objects_as_service_principal --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_people 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_people --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_people_get_count_d516 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_people_get_count_d516 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_people 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_people --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
person_id string yes Path parameter `person-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_permission_grants 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_permission_grants --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_create_permission_grants 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_create_permission_grants --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_permission_grants_get_count_07aa 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_permission_grants_get_count_07aa --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_delete_permission_grants 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_delete_permission_grants --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
resource_specific_permission_grant_id string yes Path parameter `resourceSpecificPermissionGrant-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_permission_grants 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_permission_grants --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
resource_specific_permission_grant_id string yes Path parameter `resourceSpecificPermissionGrant-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_update_permission_grants 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_update_permission_grants --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
resource_specific_permission_grant_id string yes Path parameter `resourceSpecificPermissionGrant-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_list_registered_devices 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_registered_devices --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_registered_devices_get_count_0403 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_registered_devices_get_count_0403 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_registered_devices_as_app_role_assignment 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_registered_devices_as_app_role_assignment --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_registered_devices_get_count_as_app_role_assignment_cd2d 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_registered_devices_get_count_as_app_role_assignment_cd2d --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_registered_devices_as_device 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_registered_devices_as_device --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_registered_devices_get_count_as_device_16e2 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_registered_devices_get_count_as_device_16e2 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_registered_devices_as_endpoint 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_registered_devices_as_endpoint --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_registered_devices_get_count_as_endpoint_87c6 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_registered_devices_get_count_as_endpoint_87c6 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_registered_devices 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_registered_devices --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_registered_devices_as_app_role_assignment 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_registered_devices_as_app_role_assignment --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_registered_devices_as_device 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_registered_devices_as_device --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_registered_devices_as_endpoint 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_registered_devices_as_endpoint --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_user_remove_all_devices_from_management 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_remove_all_devices_from_management --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_user_reprocess_license_assignment 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_reprocess_license_assignment --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_user_restore 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_restore --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_user_retry_service_provisioning 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_retry_service_provisioning --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_user_revoke_sign_in_sessions 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_revoke_sign_in_sessions --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_scoped_role_member_of 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_scoped_role_member_of --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_create_scoped_role_member_of 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_create_scoped_role_member_of --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_scoped_role_member_of_get_count_0e30 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_scoped_role_member_of_get_count_0e30 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_delete_scoped_role_member_of 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_delete_scoped_role_member_of --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
scoped_role_membership_id string yes Path parameter `scopedRoleMembership-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_scoped_role_member_of 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_scoped_role_member_of --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
scoped_role_membership_id string yes Path parameter `scopedRoleMembership-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_update_scoped_role_member_of 14 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_update_scoped_role_member_of --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
scoped_role_membership_id string yes Path parameter `scopedRoleMembership-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_list_service_provisioning_errors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_service_provisioning_errors --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_service_provisioning_errors_get_count_bccc 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_service_provisioning_errors_get_count_bccc --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_sponsors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_sponsors --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_sponsors_get_count_f3b9 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_sponsors_get_count_f3b9 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_delete_ref_sponsors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_delete_ref_sponsors --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_ref_sponsors 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_ref_sponsors --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_create_ref_sponsors 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_create_ref_sponsors --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_sponsors_delete_ref_directory_object 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_sponsors_delete_ref_directory_object --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_transitive_member_of 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_transitive_member_of --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_transitive_member_of_get_count_b904 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_transitive_member_of_get_count_b904 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_transitive_member_of_as_administrative_unit 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_transitive_member_of_as_administrative_unit --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_transitive_member_of_get_count_as_administrative_unit_9c79 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_transitive_member_of_get_count_as_administrative_unit_9c79 --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_transitive_member_of_as_directory_role 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_transitive_member_of_as_directory_role --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_transitive_member_of_get_count_as_directory_role_462d 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_transitive_member_of_get_count_as_directory_role_462d --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_list_transitive_member_of_as_group 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_list_transitive_member_of_as_group --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_transitive_member_of_get_count_as_group_062f 12 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_transitive_member_of_get_count_as_group_062f --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_transitive_member_of 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_transitive_member_of --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_transitive_member_of_as_administrative_unit 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_transitive_member_of_as_administrative_unit --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_transitive_member_of_as_directory_role 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_transitive_member_of_as_directory_role --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_get_transitive_member_of_as_group 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_get_transitive_member_of_as_group --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-id`.
directory_object_id string yes Path parameter `directoryObject-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 directory queries.
microsoft-entra-id.microsoft_entra_id_users_user_translate_exchange_ids 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_translate_exchange_ids --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.
microsoft-entra-id.microsoft_entra_id_users_user_wipe_managed_app_registrations_by_device_tag 13 parameters
Schema command
kosmo integrations:schema microsoft-entra-id.microsoft_entra_id_users_user_wipe_managed_app_registrations_by_device_tag --json
ParameterTypeRequiredDescription
user_id string yes Path parameter `user-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 directory queries.
body object yes Request body matching the official Microsoft Graph OpenAPI schema for this operation.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.