productivity
Miro CLI for AI Agents
Use the Miro CLI from KosmoKrator to call Miro tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.Miro CLI Setup
Miro can be configured headlessly with `kosmokrator integrations:configure miro`.
# 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 miro --set access_token="$MIRO_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmokrator integrations:doctor miro --json
kosmokrator integrations:status --json Credentials
Authentication type: oauth bearer token oauth_bearer_token. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.
| Key | Env var | Type | Required | Label |
|---|---|---|---|---|
access_token | MIRO_ACCESS_TOKEN | Secret secret | yes | OAuth Access Token |
refresh_token | MIRO_REFRESH_TOKEN | Secret secret | no | OAuth Refresh Token |
url | MIRO_URL | URL url | no | API Base URL |
Command Patterns
The generic command is stable across every integration. The provider shortcut is shorter for humans.
kosmo integrations:call miro.miro_revoke_token '{}' --json kosmo integrations:miro miro_revoke_token '{}' --json Discovery
These commands return structured output for coding agents that need to inspect capabilities before choosing a function.
kosmo integrations:docs miro --json
kosmo integrations:docs miro.miro_revoke_token --json
kosmo integrations:schema miro.miro_revoke_token --json
kosmo integrations:search "Miro" --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.
miro.miro_revoke_token
Please use the new revoke endpoint /v2/oauth/revoke. This endpoint is considered vulnerable and deprecated due to access token passed publicly in the URL. Revoke the current access token. Revoking an access token means that the access token will no longer work
write - Parameters
- none
kosmo integrations:call miro.miro_revoke_token '{}' --json kosmo integrations:miro miro_revoke_token '{}' --json miro.miro_token_info
Get information about an access token, such as the token type, scopes, team, user, token creation date and time, and the user who created the token. Official Miro endpoint: GET /v1/oauth-token.
read - Parameters
- none
kosmo integrations:call miro.miro_token_info '{}' --json kosmo integrations:miro miro_token_info '{}' --json miro.miro_enterprise_get_ai_interaction_logs
Retrieves AI interaction logs for your organization. AI interaction logs capture user interactions with AI features in Miro. You can retrieve results for a specific time period. You can also filter results based on object IDs and the emails of users who intera
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_ai_interaction_logs '{}' --json kosmo integrations:miro miro_enterprise_get_ai_interaction_logs '{}' --json miro.miro_enterprise_get_audit_logs
Retrieves a page of audit events from the last 90 days. If you want to retrieve data that is older than 90 days, you can use the CSV export feature. Required scope auditlogs:read Rate limiting Level 2 Official Miro endpoint: GET /v2/audit/logs.
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_audit_logs '{}' --json kosmo integrations:miro miro_enterprise_get_audit_logs '{}' --json miro.miro_enterprise_dataclassification_organization_settings_get
Retrieves board classification settings for an existing organization. Required scope organizations:read Rate limiting Level 2 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_dataclassification_organization_settings_get '{}' --json kosmo integrations:miro miro_enterprise_dataclassification_organization_settings_get '{}' --json miro.miro_enterprise_dataclassification_team_boards_bulk
Updates board classification for not-classified only or all boards in an existing team. Required scope boards:write Rate limiting Level 4 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_dataclassification_team_boards_bulk '{}' --json kosmo integrations:miro miro_enterprise_dataclassification_team_boards_bulk '{}' --json miro.miro_enterprise_dataclassification_team_settings_get
Retrieves board classification settings for an existing team. Required scope organizations:teams:read Rate limiting Level 2 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company A
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_dataclassification_team_settings_get '{}' --json kosmo integrations:miro miro_enterprise_dataclassification_team_settings_get '{}' --json miro.miro_enterprise_dataclassification_team_settings_set
Updates board classification settings for an existing team. Required scope organizations:teams:write Rate limiting Level 2 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Ad
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_dataclassification_team_settings_set '{}' --json kosmo integrations:miro miro_enterprise_dataclassification_team_settings_set '{}' --json miro.miro_enterprise_dataclassification_board_get
Retrieves board classification for a board. Required scope boards:read Rate limiting Level 2 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You can request temporary
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_dataclassification_board_get '{}' --json kosmo integrations:miro miro_enterprise_dataclassification_board_get '{}' --json miro.miro_enterprise_dataclassification_board_set
Updates board classification for an existing board. Required scope boards:write Rate limiting Level 2 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You can request
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_dataclassification_board_set '{}' --json kosmo integrations:miro miro_enterprise_dataclassification_board_set '{}' --json miro.miro_create_doc_format_item
Adds a doc format item to a board. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: POST /v2/boards/{board_id}/docs.
write - Parameters
- none
kosmo integrations:call miro.miro_create_doc_format_item '{}' --json kosmo integrations:miro miro_create_doc_format_item '{}' --json miro.miro_get_doc_format_item
Retrieves information for a specific doc format item on a board. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id}/docs/{item_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_doc_format_item '{}' --json kosmo integrations:miro miro_get_doc_format_item '{}' --json miro.miro_delete_doc_format_item
Deletes a doc format item from the board Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2/boards/{board_id}/docs/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_delete_doc_format_item '{}' --json kosmo integrations:miro miro_delete_doc_format_item '{}' --json miro.miro_get_all_cases
Retrieves the list of eDiscovery cases in an organization. Required scope organization:cases:management Rate limiting Level 4 Enterprise Guard only This API is available only for Enterprise plan users with the Enterprise Guard add-on. You can only use this end
read - Parameters
- none
kosmo integrations:call miro.miro_get_all_cases '{}' --json kosmo integrations:miro miro_get_all_cases '{}' --json miro.miro_create_case
Creating a case for legal hold is the first critical step in the eDiscovery process when litigation or an investigation is anticipated. One of the purposes of creating a case is that it acts as a container that allows admins to group multiple legal holds under
write - Parameters
- none
kosmo integrations:call miro.miro_create_case '{}' --json kosmo integrations:miro miro_create_case '{}' --json miro.miro_delete_case
Closing a case is the final stage in the eDiscovery process, marking the conclusion of a legal matter or investigation. You must ensure that all associated legal holds within the case are closed before closing the case. Closing a case will permanently delete i
write - Parameters
- none
kosmo integrations:call miro.miro_delete_case '{}' --json kosmo integrations:miro miro_delete_case '{}' --json miro.miro_get_case
Retrieves information about a case in an organization. Required scope organization:cases:management Rate limiting Level 3 Enterprise Guard only This API is available only for Enterprise plan users with the Enterprise Guard add-on. You can only use this endpoin
read - Parameters
- none
kosmo integrations:call miro.miro_get_case '{}' --json kosmo integrations:miro miro_get_case '{}' --json miro.miro_edit_case
Editing a case allows eDiscovery Admins to keep case details accurate and aligned with the evolving scope of a legal matter. As investigations progress, it may be necessary to update the case name or description to reflect changes in focus, terminology, or int
write - Parameters
- none
kosmo integrations:call miro.miro_edit_case '{}' --json kosmo integrations:miro miro_edit_case '{}' --json miro.miro_get_all_legal_holds
Retrieves the list of all legal holds within a case for an organization. Required scope organization:cases:management Rate limiting Level 4 Enterprise Guard only This API is available only for Enterprise plan users with the Enterprise Guard add-on. You can onl
read - Parameters
- none
kosmo integrations:call miro.miro_get_all_legal_holds '{}' --json kosmo integrations:miro miro_get_all_legal_holds '{}' --json miro.miro_create_legal_hold
After creating a case it is possible to add one or multiple legal holds to the case. Creating a legal hold involves identifying the relevant users associated with a case and applying the hold to prevent permanent deletion of content that those users own, co-ow
write - Parameters
- none
kosmo integrations:call miro.miro_create_legal_hold '{}' --json kosmo integrations:miro miro_create_legal_hold '{}' --json miro.miro_get_legal_hold_export_jobs
Retrieves board export jobs for a case. Required scope organization:cases:management Rate limiting Level 4 Enterprise Guard only This API is available only for Enterprise plan users with the Enterprise Guard add-on. You can only use this endpoint if you have b
read - Parameters
- none
kosmo integrations:call miro.miro_get_legal_hold_export_jobs '{}' --json kosmo integrations:miro miro_get_legal_hold_export_jobs '{}' --json miro.miro_delete_legal_hold
Closing a legal hold is one of the final steps in the eDiscovery process once the litigation or investigation has concluded. This process involves releasing the Miro boards and custodians that were under legal hold, allowing the preserved boards to return to n
write - Parameters
- none
kosmo integrations:call miro.miro_delete_legal_hold '{}' --json kosmo integrations:miro miro_delete_legal_hold '{}' --json miro.miro_get_legal_hold
Retrieves information about a legal hold within a case for an organization. Required scope organization:cases:management Rate limiting Level 3 Enterprise Guard only This API is available only for Enterprise plan users with the Enterprise Guard add-on. You can
read - Parameters
- none
kosmo integrations:call miro.miro_get_legal_hold '{}' --json kosmo integrations:miro miro_get_legal_hold '{}' --json miro.miro_edit_legal_hold
Editing a legal hold allows eDiscovery Admins to adjust and refine ongoing legal preservation efforts as case requirements evolve. Whether new custodians are identified, additional Miro boards become relevant, or existing boards or users are no longer in scope
write - Parameters
- none
kosmo integrations:call miro.miro_edit_legal_hold '{}' --json kosmo integrations:miro miro_edit_legal_hold '{}' --json miro.miro_get_legal_hold_content_items
Once a legal hold is in place you can review or explore the preserved Miro boards to ensure that all relevant data is intact and ready for legal proceedings or investigations. For more information, see our Help Center page on reviewing boards under legal hold.
read - Parameters
- none
kosmo integrations:call miro.miro_get_legal_hold_content_items '{}' --json kosmo integrations:miro miro_get_legal_hold_content_items '{}' --json miro.miro_enterprise_create_board_export
Creates an export job for one or more boards. Required scope boards:export Rate limiting Level 4 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin and eDiscovery is enab
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_create_board_export '{}' --json kosmo integrations:miro miro_enterprise_create_board_export '{}' --json miro.miro_enterprise_board_export_jobs
Retrieves the list of board export jobs based on the filters provided in the request. Required scope boards:export Rate limiting Level 4 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role o
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_board_export_jobs '{}' --json kosmo integrations:miro miro_enterprise_board_export_jobs '{}' --json miro.miro_enterprise_board_export_job_status
Retrieves the status of the board export job. Required scope boards:export Rate limiting Level 4 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin and eDiscovery is enab
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_board_export_job_status '{}' --json kosmo integrations:miro miro_enterprise_board_export_job_status '{}' --json miro.miro_enterprise_board_export_job_results
Retrieves the result of the board export job. The response provides more information about the board export job, such as the S3 link to the files created. Required scope boards:export Rate limiting Level 4 Enterprise only This API is available only for Enterpr
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_board_export_job_results '{}' --json kosmo integrations:miro miro_enterprise_board_export_job_results '{}' --json miro.miro_enterprise_update_board_export_job
Updates the status of the board export job. Currently, only the cancellation of an ongoing export job is supported. Required scope boards:export Rate limiting Level 4 Enterprise only This API is available only for Enterprise plan users. You can only use this e
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_update_board_export_job '{}' --json kosmo integrations:miro miro_enterprise_update_board_export_job '{}' --json miro.miro_enterprise_board_export_job_tasks
Retrieves the list of tasks for the board export job. Required scope boards:export Rate limiting Level 4 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin and eDiscovery
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_board_export_job_tasks '{}' --json kosmo integrations:miro miro_enterprise_board_export_job_tasks '{}' --json miro.miro_enterprise_create_board_export_task_export_link
Creates a link to download the results of a board export task. Required scope boards:export Rate limiting Level 4 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin and e
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_create_board_export_task_export_link '{}' --json kosmo integrations:miro miro_enterprise_create_board_export_task_export_link '{}' --json miro.miro_enterprise_board_content_item_logs_fetch
Retrieves content changes for board items within your organization. Content changes are actions that users can perform on board items, such as updating a sticky note's text. You can retrieve results for a specific time period. You can also filter results based
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_board_content_item_logs_fetch '{}' --json kosmo integrations:miro miro_enterprise_board_content_item_logs_fetch '{}' --json miro.miro_enterprise_post_user_sessions_reset
Reset all sessions of a user. Admins can now take immediate action to restrict user access to company data in case of security concerns. Calling this API ends all active Miro sessions across devices for a particular user, requiring the user to sign in again. T
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_post_user_sessions_reset '{}' --json kosmo integrations:miro miro_enterprise_post_user_sessions_reset '{}' --json miro.miro_list_users
Retrieves the list of users in your organization. Note: The API returns users that are members in the organization, it does not return users that are added in the organization as guests. Official Miro endpoint: GET /Users.
read - Parameters
- none
kosmo integrations:call miro.miro_list_users '{}' --json kosmo integrations:miro miro_list_users '{}' --json miro.miro_create_user
Creates a new user in the organization. Note: All newly provisioned users are added to the default team. Official Miro endpoint: POST /Users.
write - Parameters
- none
kosmo integrations:call miro.miro_create_user '{}' --json kosmo integrations:miro miro_create_user '{}' --json miro.miro_get_user
Retrieves a single user resource. Note: Returns only users that are members in the organization. It does not return users that are added in the organization as guests. Official Miro endpoint: GET /Users/{id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_user '{}' --json kosmo integrations:miro miro_get_user '{}' --json miro.miro_replace_user
Updates an existing user resource. This is the easiest way to replace user information. If the user is deactivated, userName, userType, and roles.value cannot be updated. emails.value, emails.display, emails.primary get ignored and do not return any error. Not
write - Parameters
- none
kosmo integrations:call miro.miro_replace_user '{}' --json kosmo integrations:miro miro_replace_user '{}' --json miro.miro_patch_user
Updates an existing user resource, overwriting values for specified attributes. Attributes that are not provided will remain unchanged. PATCH operation only updates the fields provided. Note: If the user is not a member in the organization, they cannot be upda
write - Parameters
- none
kosmo integrations:call miro.miro_patch_user '{}' --json kosmo integrations:miro miro_patch_user '{}' --json miro.miro_delete_user
Deletes a single user from the organization. Note: A user who is the last admin in the team or the last admin in the organization cannot be deleted. User must be a member in the organization to be deleted. Users that have guest role in the organization cannot
write - Parameters
- none
kosmo integrations:call miro.miro_delete_user '{}' --json kosmo integrations:miro miro_delete_user '{}' --json miro.miro_list_groups
Retrieves the list of groups (teams) in the organization. Note: Along with groups (teams), the users that are part of those groups (teams) are also retrieved. Only users that have member role in the organization are fetched. Official Miro endpoint: GET /Group
read - Parameters
- none
kosmo integrations:call miro.miro_list_groups '{}' --json kosmo integrations:miro miro_list_groups '{}' --json miro.miro_get_group
Retrieves a single Group resource. Note: Along with groups (teams), the users that are part of those groups (teams) are also retrieved. Only users that have member role in the organization are fetched. Official Miro endpoint: GET /Groups/{id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_group '{}' --json kosmo integrations:miro miro_get_group '{}' --json miro.miro_patch_group
Updates an existing group resource, i.e. a team, overwriting values for specified attributes. Patch operation for group can be used to add, remove, or replace team members and to update the display name of the group (team). To add a user to the group (team), u
write - Parameters
- none
kosmo integrations:call miro.miro_patch_group '{}' --json kosmo integrations:miro miro_patch_group '{}' --json miro.miro_list_service_provider_configs
Retrieve supported operations and SCIM API basic configuration. Official Miro endpoint: GET /ServiceProviderConfig.
read - Parameters
- none
kosmo integrations:call miro.miro_list_service_provider_configs '{}' --json kosmo integrations:miro miro_list_service_provider_configs '{}' --json miro.miro_list_resource_types
Retrieve information about which SCIM resources are supported. Currently, Miro supports Users and Groups as Resource Types. Official Miro endpoint: GET /ResourceTypes.
read - Parameters
- none
kosmo integrations:call miro.miro_list_resource_types '{}' --json kosmo integrations:miro miro_list_resource_types '{}' --json miro.miro_get_resource_type
Retrieve metadata for the available resource types (User and Group) that are supported. Official Miro endpoint: GET /ResourceTypes/{resource}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_resource_type '{}' --json kosmo integrations:miro miro_get_resource_type '{}' --json miro.miro_list_schemas
Retrieve metadata about Users, Groups, and extension attributes that are currently supported. Official Miro endpoint: GET /Schemas.
read - Parameters
- none
kosmo integrations:call miro.miro_list_schemas '{}' --json kosmo integrations:miro miro_list_schemas '{}' --json miro.miro_get_schema
Retrieve information about how users, groups, and enterprise-user attributes URIs that are formatted. Official Miro endpoint: GET /Schemas/{uri}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_schema '{}' --json kosmo integrations:miro miro_get_schema '{}' --json miro.miro_enterprise_get_organization
Retrieves organization information. Required scope organizations:read Rate limiting Level 3 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You can request temporary
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_organization '{}' --json kosmo integrations:miro miro_enterprise_get_organization '{}' --json miro.miro_enterprise_get_organization_members
Retrieves organization members based on the organization ID and the cursor, or based on the user emails provided in the request. Required scope organizations:read Rate limiting Level 3 Enterprise only This API is available only for Enterprise plan users. You c
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_organization_members '{}' --json kosmo integrations:miro miro_enterprise_get_organization_members '{}' --json miro.miro_enterprise_get_organization_member
Retrieves organization member information for an existing organization. Required scope organizations:read Rate limiting Level 3 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Compa
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_organization_member '{}' --json kosmo integrations:miro miro_enterprise_get_organization_member '{}' --json miro.miro_create_board
Creates a board with the specified name and sharing policies. Note You can only create up to 3 team boards with the free plan. Required scope boards:write Rate limiting Level 3 Official Miro endpoint: POST /v2/boards.
write - Parameters
- none
kosmo integrations:call miro.miro_create_board '{}' --json kosmo integrations:miro miro_create_board '{}' --json miro.miro_get_boards
Retrieves a list of boards accessible to the user associated with the provided access token. This endpoint supports filtering and sorting through URL query parameters. Customize the response by specifying `team_id`, `project_id`, or other query parameters. Fil
read - Parameters
- none
kosmo integrations:call miro.miro_get_boards '{}' --json kosmo integrations:miro miro_get_boards '{}' --json miro.miro_copy_board
Creates a copy of an existing board. You can also update the name, description, sharing policy, and permissions policy for the new board in the request body. Required scope boards:write Rate limiting Level 4 Official Miro endpoint: PUT /v2/boards.
write - Parameters
- none
kosmo integrations:call miro.miro_copy_board '{}' --json kosmo integrations:miro miro_copy_board '{}' --json miro.miro_get_specific_board
Retrieves information about a board. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_specific_board '{}' --json kosmo integrations:miro miro_get_specific_board '{}' --json miro.miro_update_board
Updates a specific board. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PATCH /v2/boards/{board_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_update_board '{}' --json kosmo integrations:miro miro_update_board '{}' --json miro.miro_delete_board
Deletes a board. Deleted boards go to Trash (on paid plans) and can be restored via UI within 90 days after deletion. Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2/boards/{board_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_delete_board '{}' --json kosmo integrations:miro miro_delete_board '{}' --json miro.miro_create_app_card_item
Adds an app card item to a board. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: POST /v2/boards/{board_id}/app_cards.
write - Parameters
- none
kosmo integrations:call miro.miro_create_app_card_item '{}' --json kosmo integrations:miro miro_create_app_card_item '{}' --json miro.miro_get_app_card_item
Retrieves information for a specific app card item on a board. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id}/app_cards/{item_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_app_card_item '{}' --json kosmo integrations:miro miro_get_app_card_item '{}' --json miro.miro_update_app_card_item
Updates an app card item on a board based on the data and style properties provided in the request body. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PATCH /v2/boards/{board_id}/app_cards/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_update_app_card_item '{}' --json kosmo integrations:miro miro_update_app_card_item '{}' --json miro.miro_delete_app_card_item
Deletes an app card item from a board. Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2/boards/{board_id}/app_cards/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_delete_app_card_item '{}' --json kosmo integrations:miro miro_delete_app_card_item '{}' --json miro.miro_create_card_item
Adds a card item to a board Required scope boards:write Rate limiting Level 2 Official Miro endpoint: POST /v2/boards/{board_id}/cards.
write - Parameters
- none
kosmo integrations:call miro.miro_create_card_item '{}' --json kosmo integrations:miro miro_create_card_item '{}' --json miro.miro_get_card_item
Retrieves information for a specific card item on a board Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id}/cards/{item_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_card_item '{}' --json kosmo integrations:miro miro_get_card_item '{}' --json miro.miro_update_card_item
Updates a card item on a board based on the data and style properties provided in the request body. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PATCH /v2/boards/{board_id}/cards/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_update_card_item '{}' --json kosmo integrations:miro miro_update_card_item '{}' --json miro.miro_delete_card_item
Deletes a card item from the board. Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2/boards/{board_id}/cards/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_delete_card_item '{}' --json kosmo integrations:miro miro_delete_card_item '{}' --json miro.miro_create_connector
Adds a connector to a board. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: POST /v2/boards/{board_id}/connectors.
write - Parameters
- none
kosmo integrations:call miro.miro_create_connector '{}' --json kosmo integrations:miro miro_create_connector '{}' --json miro.miro_get_connectors
Retrieves a list of connectors for a specific board. This method returns results using a cursor-based approach. A cursor-paginated method returns a portion of the total set of results based on the limit specified and a cursor that points to the next portion of
read - Parameters
- none
kosmo integrations:call miro.miro_get_connectors '{}' --json kosmo integrations:miro miro_get_connectors '{}' --json miro.miro_get_connector
Retrieves information for a specific connector on a board. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id}/connectors/{connector_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_connector '{}' --json kosmo integrations:miro miro_get_connector '{}' --json miro.miro_update_connector
Updates a connector on a board based on the data and style properties provided in the request body. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PATCH /v2/boards/{board_id}/connectors/{connector_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_update_connector '{}' --json kosmo integrations:miro miro_update_connector '{}' --json miro.miro_delete_connector
Deletes the specified connector from the board. Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2/boards/{board_id}/connectors/{connector_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_delete_connector '{}' --json kosmo integrations:miro miro_delete_connector '{}' --json miro.miro_create_document_item_using_url
Adds a document item to a board by specifying the URL where the document is hosted. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: POST /v2/boards/{board_id}/documents.
write - Parameters
- none
kosmo integrations:call miro.miro_create_document_item_using_url '{}' --json kosmo integrations:miro miro_create_document_item_using_url '{}' --json miro.miro_get_document_item
Retrieves information for a specific document item on a board Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id}/documents/{item_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_document_item '{}' --json kosmo integrations:miro miro_get_document_item '{}' --json miro.miro_update_document_item_using_url
Updates a document item on a board Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PATCH /v2/boards/{board_id}/documents/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_update_document_item_using_url '{}' --json kosmo integrations:miro miro_update_document_item_using_url '{}' --json miro.miro_delete_document_item
Deletes a document item from the board. Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2/boards/{board_id}/documents/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_delete_document_item '{}' --json kosmo integrations:miro miro_delete_document_item '{}' --json miro.miro_create_embed_item
Adds an embed item containing external content to a board. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: POST /v2/boards/{board_id}/embeds.
write - Parameters
- none
kosmo integrations:call miro.miro_create_embed_item '{}' --json kosmo integrations:miro miro_create_embed_item '{}' --json miro.miro_get_embed_item
Retrieves information for a specific embed item on a board. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id}/embeds/{item_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_embed_item '{}' --json kosmo integrations:miro miro_get_embed_item '{}' --json miro.miro_update_embed_item
Updates an embed item on a board based on the data properties provided in the request body. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PATCH /v2/boards/{board_id}/embeds/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_update_embed_item '{}' --json kosmo integrations:miro miro_update_embed_item '{}' --json miro.miro_delete_embed_item
Deletes an embed item from the board. Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2/boards/{board_id}/embeds/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_delete_embed_item '{}' --json kosmo integrations:miro miro_delete_embed_item '{}' --json miro.miro_create_image_item_using_url
Adds an image item to a board by specifying an image URL. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: POST /v2/boards/{board_id}/images.
write - Parameters
- none
kosmo integrations:call miro.miro_create_image_item_using_url '{}' --json kosmo integrations:miro miro_create_image_item_using_url '{}' --json miro.miro_get_image_item
Retrieves information for a specific image item on a board. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id}/images/{item_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_image_item '{}' --json kosmo integrations:miro miro_get_image_item '{}' --json miro.miro_update_image_item_using_url
Updates an image item on a board. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PATCH /v2/boards/{board_id}/images/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_update_image_item_using_url '{}' --json kosmo integrations:miro miro_update_image_item_using_url '{}' --json miro.miro_delete_image_item
Deletes an image item from the board. Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2/boards/{board_id}/images/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_delete_image_item '{}' --json kosmo integrations:miro miro_delete_image_item '{}' --json miro.miro_get_items
Retrieves a list of items for a specific board. You can retrieve all items on the board, a list of child items inside a parent item, or a list of specific types of items by specifying URL query parameter values. This method returns results using a cursor-based
read - Parameters
- none
kosmo integrations:call miro.miro_get_items '{}' --json kosmo integrations:miro miro_get_items '{}' --json miro.miro_get_specific_item
Retrieves information for a specific item on a board. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id}/items/{item_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_specific_item '{}' --json kosmo integrations:miro miro_get_specific_item '{}' --json miro.miro_update_item_position_or_parent
Updates the position or the parent of an item on a board. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PATCH /v2/boards/{board_id}/items/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_update_item_position_or_parent '{}' --json kosmo integrations:miro miro_update_item_position_or_parent '{}' --json miro.miro_delete_item
Deletes an item from a board. Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2/boards/{board_id}/items/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_delete_item '{}' --json kosmo integrations:miro miro_delete_item '{}' --json miro.miro_share_board
Shares the board and Invites new members to collaborate on a board by sending an invitation email. Depending on the board's Sharing policy, there might be various scenarios where membership in the team is required in order to share the board with a user. Requi
write - Parameters
- none
kosmo integrations:call miro.miro_share_board '{}' --json kosmo integrations:miro miro_share_board '{}' --json miro.miro_get_board_members
Retrieves a pageable list of members for a board. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id}/members.
read - Parameters
- none
kosmo integrations:call miro.miro_get_board_members '{}' --json kosmo integrations:miro miro_get_board_members '{}' --json miro.miro_get_specific_board_member
Retrieves information for a board member. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id}/members/{board_member_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_specific_board_member '{}' --json kosmo integrations:miro miro_get_specific_board_member '{}' --json miro.miro_update_board_member
Updates the role of a board member. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PATCH /v2/boards/{board_id}/members/{board_member_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_update_board_member '{}' --json kosmo integrations:miro miro_update_board_member '{}' --json miro.miro_remove_board_member
Removes a board member from a board. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: DELETE /v2/boards/{board_id}/members/{board_member_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_remove_board_member '{}' --json kosmo integrations:miro miro_remove_board_member '{}' --json miro.miro_create_shape_item
Adds a shape item to a board. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: POST /v2/boards/{board_id}/shapes.
write - Parameters
- none
kosmo integrations:call miro.miro_create_shape_item '{}' --json kosmo integrations:miro miro_create_shape_item '{}' --json miro.miro_get_shape_item
Retrieves information for a specific shape item on a board. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id}/shapes/{item_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_shape_item '{}' --json kosmo integrations:miro miro_get_shape_item '{}' --json miro.miro_update_shape_item
Updates a shape item on a board based on the data and style properties provided in the request body. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PATCH /v2/boards/{board_id}/shapes/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_update_shape_item '{}' --json kosmo integrations:miro miro_update_shape_item '{}' --json miro.miro_delete_shape_item
Deletes a shape item from the board. Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2/boards/{board_id}/shapes/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_delete_shape_item '{}' --json kosmo integrations:miro miro_delete_shape_item '{}' --json miro.miro_create_sticky_note_item
Adds a sticky note item to a board. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: POST /v2/boards/{board_id}/sticky_notes.
write - Parameters
- none
kosmo integrations:call miro.miro_create_sticky_note_item '{}' --json kosmo integrations:miro miro_create_sticky_note_item '{}' --json miro.miro_get_sticky_note_item
Retrieves information for a specific sticky note item on a board. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id}/sticky_notes/{item_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_sticky_note_item '{}' --json kosmo integrations:miro miro_get_sticky_note_item '{}' --json miro.miro_update_sticky_note_item
Updates a sticky note item on a board based on the data and style properties provided in the request body. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PATCH /v2/boards/{board_id}/sticky_notes/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_update_sticky_note_item '{}' --json kosmo integrations:miro miro_update_sticky_note_item '{}' --json miro.miro_delete_sticky_note_item
Deletes a sticky note item from the board. Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2/boards/{board_id}/sticky_notes/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_delete_sticky_note_item '{}' --json kosmo integrations:miro miro_delete_sticky_note_item '{}' --json miro.miro_create_text_item
Adds a text item to a board. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: POST /v2/boards/{board_id}/texts.
write - Parameters
- none
kosmo integrations:call miro.miro_create_text_item '{}' --json kosmo integrations:miro miro_create_text_item '{}' --json miro.miro_get_text_item
Retrieves information for a specific text item on a board. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id}/texts/{item_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_text_item '{}' --json kosmo integrations:miro miro_get_text_item '{}' --json miro.miro_update_text_item
Updates a text item on a board based on the data and style properties provided in the request body. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PATCH /v2/boards/{board_id}/texts/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_update_text_item '{}' --json kosmo integrations:miro miro_update_text_item '{}' --json miro.miro_delete_text_item
Deletes a text item from the board Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2/boards/{board_id}/texts/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_delete_text_item '{}' --json kosmo integrations:miro miro_delete_text_item '{}' --json miro.miro_create_items
Adds different types of items to a board. You can add up to 20 items of the same or different type per create call. For example, you can create 3 shape items, 4 card items, and 5 sticky notes in one create call. The bulk create operation is transactional. If a
write - Parameters
- none
kosmo integrations:call miro.miro_create_items '{}' --json kosmo integrations:miro miro_create_items '{}' --json miro.miro_create_frame_item
Adds a frame to a board. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: POST /v2/boards/{board_id}/frames.
write - Parameters
- none
kosmo integrations:call miro.miro_create_frame_item '{}' --json kosmo integrations:miro miro_create_frame_item '{}' --json miro.miro_get_frame_item
Retrieves information for a specific frame on a board. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id}/frames/{item_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_frame_item '{}' --json kosmo integrations:miro miro_get_frame_item '{}' --json miro.miro_update_frame_item
Updates a frame on a board based on the data, style, or geometry properties provided in the request body. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PATCH /v2/boards/{board_id}/frames/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_update_frame_item '{}' --json kosmo integrations:miro miro_update_frame_item '{}' --json miro.miro_delete_frame_item
Deletes a frame from a board. Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2/boards/{board_id}/frames/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_delete_frame_item '{}' --json kosmo integrations:miro miro_delete_frame_item '{}' --json miro.miro_get_items_within_frame
Retrieves a list of items within a specific frame. A frame is a parent item and all items within a frame are child items. This method returns results using a cursor-based approach. A cursor-paginated method returns a portion of the total set of results based o
read - Parameters
- none
kosmo integrations:call miro.miro_get_items_within_frame '{}' --json kosmo integrations:miro miro_get_items_within_frame '{}' --json miro.miro_create_items_in_bulk_using_file_from_device
Adds different types of items to a board using files from a device. You can add up to 20 items of the same or different type per create call. For example, you can create 5 document items and 5 images in one create call. The bulk create operation is transaction
write - Parameters
- none
kosmo integrations:call miro.miro_create_items_in_bulk_using_file_from_device '{}' --json kosmo integrations:miro miro_create_items_in_bulk_using_file_from_device '{}' --json miro.miro_get_metrics
Returns a list of usage metrics for a specific app for a given time range, grouped by requested time period. This endpoint requires an app management API token. It can be generated in the Your Apps section of Developer Hub. Required scope boards:read Rate limi
read - Parameters
- none
kosmo integrations:call miro.miro_get_metrics '{}' --json kosmo integrations:miro miro_get_metrics '{}' --json miro.miro_get_metrics_total
Returns total usage metrics for a specific app since the app was created. This endpoint requires an app management API token. It can be generated in your apps section of Developer Hub. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: G
read - Parameters
- none
kosmo integrations:call miro.miro_get_metrics_total '{}' --json kosmo integrations:miro miro_get_metrics_total '{}' --json miro.miro_get_mindmap_node_experimental
Retrieves information for a specific mind map node on a board. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2-experimental/boards/{board_id}/mindmap_nodes/{item_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_mindmap_node_experimental '{}' --json kosmo integrations:miro miro_get_mindmap_node_experimental '{}' --json miro.miro_delete_mindmap_node_experimental
Deletes a mind map node item and its child nodes from the board. Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2-experimental/boards/{board_id}/mindmap_nodes/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_delete_mindmap_node_experimental '{}' --json kosmo integrations:miro miro_delete_mindmap_node_experimental '{}' --json miro.miro_get_mindmap_nodes_experimental
Retrieves a list of mind map nodes for a specific board. This method returns results using a cursor-based approach. A cursor-paginated method returns a portion of the total set of results based on the limit specified and a cursor that points to the next portio
read - Parameters
- none
kosmo integrations:call miro.miro_get_mindmap_nodes_experimental '{}' --json kosmo integrations:miro miro_get_mindmap_nodes_experimental '{}' --json miro.miro_create_mindmap_nodes_experimental
Adds a mind map node to a board. A root node is the starting point of a mind map. A node that is created under a root node is a child node. For information on mind maps, use cases, mind map structure, and more, see the Mind Map Overview page. Required scope bo
write - Parameters
- none
kosmo integrations:call miro.miro_create_mindmap_nodes_experimental '{}' --json kosmo integrations:miro miro_create_mindmap_nodes_experimental '{}' --json miro.miro_get_items_experimental
Retrieves a list of items for a specific board. You can retrieve all items on the board, a list of child items inside a parent item, or a list of specific types of items by specifying URL query parameter values. This method returns results using a cursor-based
read - Parameters
- none
kosmo integrations:call miro.miro_get_items_experimental '{}' --json kosmo integrations:miro miro_get_items_experimental '{}' --json miro.miro_get_specific_item_experimental
Retrieves information for a specific item on a board. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2-experimental/boards/{board_id}/items/{item_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_specific_item_experimental '{}' --json kosmo integrations:miro miro_get_specific_item_experimental '{}' --json miro.miro_delete_item_experimental
Deletes an item from a board. Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2-experimental/boards/{board_id}/items/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_delete_item_experimental '{}' --json kosmo integrations:miro miro_delete_item_experimental '{}' --json miro.miro_create_shape_item_flowchart
Adds a flowchart shape item to a board. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: POST /v2-experimental/boards/{board_id}/shapes.
write - Parameters
- none
kosmo integrations:call miro.miro_create_shape_item_flowchart '{}' --json kosmo integrations:miro miro_create_shape_item_flowchart '{}' --json miro.miro_get_shape_item_flowchart
Retrieves information for a specific shape item on a board. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2-experimental/boards/{board_id}/shapes/{item_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_shape_item_flowchart '{}' --json kosmo integrations:miro miro_get_shape_item_flowchart '{}' --json miro.miro_update_shape_item_flowchart
Updates a flowchart shape item on a board based on the data and style properties provided in the request body. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PATCH /v2-experimental/boards/{board_id}/shapes/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_update_shape_item_flowchart '{}' --json kosmo integrations:miro miro_update_shape_item_flowchart '{}' --json miro.miro_delete_shape_item_flowchart
Deletes a flowchart shape item from the board. Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2-experimental/boards/{board_id}/shapes/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_delete_shape_item_flowchart '{}' --json kosmo integrations:miro miro_delete_shape_item_flowchart '{}' --json miro.miro_get_code_widget_items
Retrieves a list of code widget items for a specific board. This method returns results using a cursor-based approach. A cursor-paginated method returns a portion of the total set of results based on the limit specified and a cursor that points to the next por
read - Parameters
- none
kosmo integrations:call miro.miro_get_code_widget_items '{}' --json kosmo integrations:miro miro_get_code_widget_items '{}' --json miro.miro_create_code_widget_item
Adds a code widget item to a board. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: POST /v2-experimental/boards/{board_id}/code_widgets.
write - Parameters
- none
kosmo integrations:call miro.miro_create_code_widget_item '{}' --json kosmo integrations:miro miro_create_code_widget_item '{}' --json miro.miro_get_code_widget_item
Retrieves information for a specific code widget item on a board. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2-experimental/boards/{board_id}/code_widgets/{item_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_code_widget_item '{}' --json kosmo integrations:miro miro_get_code_widget_item '{}' --json miro.miro_update_code_widget_item
Updates a code widget item on a board based on the data properties provided in the request body. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PATCH /v2-experimental/boards/{board_id}/code_widgets/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_update_code_widget_item '{}' --json kosmo integrations:miro miro_update_code_widget_item '{}' --json miro.miro_delete_code_widget_item
Deletes a code widget item from the board. Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2-experimental/boards/{board_id}/code_widgets/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_delete_code_widget_item '{}' --json kosmo integrations:miro miro_delete_code_widget_item '{}' --json miro.miro_move_code_widget_item
Updates the position of a code widget item on a board. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PATCH /v2-experimental/boards/{board_id}/code_widgets/{item_id}/position.
write - Parameters
- none
kosmo integrations:call miro.miro_move_code_widget_item '{}' --json kosmo integrations:miro miro_move_code_widget_item '{}' --json miro.miro_create_document_item_using_file_from_device
Adds a document item to a board by selecting file from device. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: POST /v2/boards/{board_id_PlatformFileUpload}/documents.
write - Parameters
- none
kosmo integrations:call miro.miro_create_document_item_using_file_from_device '{}' --json kosmo integrations:miro miro_create_document_item_using_file_from_device '{}' --json miro.miro_update_document_item_using_file_from_device
Updates a document item on a board by using file from a device. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PATCH /v2/boards/{board_id_PlatformFileUpload}/documents/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_update_document_item_using_file_from_device '{}' --json kosmo integrations:miro miro_update_document_item_using_file_from_device '{}' --json miro.miro_create_image_item_using_local_file
Adds an image item to a board by specifying a file from device. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: POST /v2/boards/{board_id_PlatformFileUpload}/images.
write - Parameters
- none
kosmo integrations:call miro.miro_create_image_item_using_local_file '{}' --json kosmo integrations:miro miro_create_image_item_using_local_file '{}' --json miro.miro_update_image_item_using_file_from_device
Updates an image item on a board. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PATCH /v2/boards/{board_id_PlatformFileUpload}/images/{item_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_update_image_item_using_file_from_device '{}' --json kosmo integrations:miro miro_update_image_item_using_file_from_device '{}' --json miro.miro_create_group
Creates a group of items on a board. The group is created with the items that are passed in the request body. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: POST /v2/boards/{board_id}/groups.
write - Parameters
- none
kosmo integrations:call miro.miro_create_group '{}' --json kosmo integrations:miro miro_create_group '{}' --json miro.miro_get_all_groups
Returns all the groups and the items of the respective groups within a specific board. This method returns results using a cursor-based approach. A cursor-paginated method returns a portion of the total set of results based on the limit specified and a cursor
read - Parameters
- none
kosmo integrations:call miro.miro_get_all_groups '{}' --json kosmo integrations:miro miro_get_all_groups '{}' --json miro.miro_get_items_by_group_id
Returns a list of items that are a part of any group, within a specific board. This method returns results using a cursor-based approach. A cursor-paginated method returns a portion of the total set of results based on the limit specified and a cursor that poi
read - Parameters
- none
kosmo integrations:call miro.miro_get_items_by_group_id '{}' --json kosmo integrations:miro miro_get_items_by_group_id '{}' --json miro.miro_get_group_by_id
Returns a list of items in a specific group. Required scope boards:read Rate limiting Level 2 per item ID Official Miro endpoint: GET /v2/boards/{board_id}/groups/{group_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_group_by_id '{}' --json kosmo integrations:miro miro_get_group_by_id '{}' --json miro.miro_un_group
Ungroups items from a group. Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2/boards/{board_id}/groups/{group_id}.
write - Parameters
- none
kosmo integrations:call miro.miro_un_group '{}' --json kosmo integrations:miro miro_un_group '{}' --json miro.miro_update_group
This endpoint updates an existing group by replacing it entirely with a new group. When the update is made, the original group is completely replaced, and a new group ID is assigned. Required scope boards:write Rate limiting Level 2 Official Miro endpoint: PU
write - Parameters
- none
kosmo integrations:call miro.miro_update_group '{}' --json kosmo integrations:miro miro_update_group '{}' --json miro.miro_delete_group
Deletes a group from a board. All the items in the group are deleted along with the group. Note - this endpoint will delete items which are locked as well. Required scope boards:write Rate limiting Level 3 Official Miro endpoint: DELETE /v2/boards/{board_id}/
write - Parameters
- none
kosmo integrations:call miro.miro_delete_group '{}' --json kosmo integrations:miro miro_delete_group '{}' --json miro.miro_revoke_token_v2
Revoke the current access token. Revoking an access token means that the access token will no longer work. When an access token is revoked, the refresh token is also revoked and no longer valid. This does not uninstall the application for the user. Official M
write - Parameters
- none
kosmo integrations:call miro.miro_revoke_token_v2 '{}' --json kosmo integrations:miro miro_revoke_token_v2 '{}' --json miro.miro_get_tags_from_item
Retrieves all the tags from the specified item. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id}/items/{item_id}/tags.
read - Parameters
- none
kosmo integrations:call miro.miro_get_tags_from_item '{}' --json kosmo integrations:miro miro_get_tags_from_item '{}' --json miro.miro_create_tag
Creates a tag on a board. Required scope boards:write Rate limiting Level 1 Official Miro endpoint: POST /v2/boards/{board_id}/tags.
write - Parameters
- none
kosmo integrations:call miro.miro_create_tag '{}' --json kosmo integrations:miro miro_create_tag '{}' --json miro.miro_get_tags_from_board
Retrieves all the tags from the specified board. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id}/tags.
read - Parameters
- none
kosmo integrations:call miro.miro_get_tags_from_board '{}' --json kosmo integrations:miro miro_get_tags_from_board '{}' --json miro.miro_get_tag
Retrieves information for a specific tag. Required scope boards:write Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id}/tags/{tag_id}.
read - Parameters
- none
kosmo integrations:call miro.miro_get_tag '{}' --json kosmo integrations:miro miro_get_tag '{}' --json miro.miro_update_tag
Updates a tag based on the data properties provided in the request body. Note: Updates to tags made via the REST API will not be reflected on the board in realtime. To see REST API updates to tags on a board, you need to refresh the board. This applies to the
write - Parameters
- none
kosmo integrations:call miro.miro_update_tag '{}' --json kosmo integrations:miro miro_update_tag '{}' --json miro.miro_delete_tag
Deletes the specified tag from the board. The tag is also removed from all cards and sticky notes on the board. Note: Updates to tags made via the REST API will not be reflected on the board in realtime. To see REST API updates to tags on a board, you need to
write - Parameters
- none
kosmo integrations:call miro.miro_delete_tag '{}' --json kosmo integrations:miro miro_delete_tag '{}' --json miro.miro_get_items_by_tag
Retrieves all the items that have the specified tag. Required scope boards:read Rate limiting Level 1 Official Miro endpoint: GET /v2/boards/{board_id_PlatformTags}/items.
read - Parameters
- none
kosmo integrations:call miro.miro_get_items_by_tag '{}' --json kosmo integrations:miro miro_get_items_by_tag '{}' --json miro.miro_attach_tag_to_item
Attach an existing tag to the specified item. Card and sticky note items can have up to 8 tags. Note: Updates to tags made via the REST API will not be reflected on the board in realtime. To see REST API updates to tags on a board, you need to refresh the boar
write - Parameters
- none
kosmo integrations:call miro.miro_attach_tag_to_item '{}' --json kosmo integrations:miro miro_attach_tag_to_item '{}' --json miro.miro_remove_tag_from_item
Removes the specified tag from the specified item. The tag still exists on the board. Note: Updates to tags made via the REST API will not be reflected on the board in realtime. To see REST API updates to tags on a board, you need to refresh the board. This ap
write - Parameters
- none
kosmo integrations:call miro.miro_remove_tag_from_item '{}' --json kosmo integrations:miro miro_remove_tag_from_item '{}' --json miro.miro_enterprise_create_project
Projects are essentially folders of boards with the option to manage user access for a smaller group of people within a team. Projects are here to help you organize your boards and make them easier to find and share. In other words, a project is a group of boa
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_create_project '{}' --json kosmo integrations:miro miro_enterprise_create_project '{}' --json miro.miro_enterprise_get_projects
Retrieves the list of projects in an existing team of an organization. You can retrieve all projects, including all private projects (projects that haven't been specifically shared with you) by enabling Content Admin permissions. To enable Content Admin permis
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_projects '{}' --json kosmo integrations:miro miro_enterprise_get_projects '{}' --json miro.miro_enterprise_get_project
Retrieves project information, such as a name for an existing project.Note Projects have been renamed to Spaces, and the terms can be used interchangeably.Required scope projects:read Rate limiting Level 1 Enterprise only This API is available only for Enterpr
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_project '{}' --json kosmo integrations:miro miro_enterprise_get_project '{}' --json miro.miro_enterprise_update_project
Update information about a project, such as the project name.Note Projects have been renamed to Spaces, and the terms can be used interchangeably.Required scope projects:write Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_update_project '{}' --json kosmo integrations:miro miro_enterprise_update_project '{}' --json miro.miro_enterprise_delete_project
Deletes a project. After a project is deleted, all boards and users that belong to the project remain in the team.Note Projects have been renamed to Spaces, and the terms can be used interchangeably.Required scope projects:write Rate limiting Level 4 Enterpris
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_delete_project '{}' --json kosmo integrations:miro miro_enterprise_delete_project '{}' --json miro.miro_enterprise_get_project_settings
Retrieves the project settings.Note Projects have been renamed to Spaces, and the terms can be used interchangeably.Required scope projects:read Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this e
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_project_settings '{}' --json kosmo integrations:miro miro_enterprise_get_project_settings '{}' --json miro.miro_enterprise_update_project_settings
Updates the settings of a project.Note Projects have been renamed to Spaces, and the terms can be used interchangeably.Required scope projects:write Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use th
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_update_project_settings '{}' --json kosmo integrations:miro miro_enterprise_update_project_settings '{}' --json miro.miro_enterprise_add_project_member
Add a Miro user to a project.Note Projects have been renamed to Spaces, and the terms can be used interchangeably.Required scope projects:write Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this en
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_add_project_member '{}' --json kosmo integrations:miro miro_enterprise_add_project_member '{}' --json miro.miro_enterprise_get_project_members
Retrieves the list of members for a specific project.Note Projects have been renamed to Spaces, and the terms can be used interchangeably.Required scope projects:read Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. Y
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_project_members '{}' --json kosmo integrations:miro miro_enterprise_get_project_members '{}' --json miro.miro_enterprise_get_project_member
Retrieves information for a specific project member.Note Projects have been renamed to Spaces, and the terms can be used interchangeably.Required scope projects:read Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. Yo
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_project_member '{}' --json kosmo integrations:miro miro_enterprise_get_project_member '{}' --json miro.miro_enterprise_update_project_member
Updates details of a project member, such as the member's role.Note Projects have been renamed to Spaces, and the terms can be used interchangeably.Required scope projects:write Rate limiting Level 1 Enterprise only This API is available only for Enterprise pl
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_update_project_member '{}' --json kosmo integrations:miro miro_enterprise_update_project_member '{}' --json miro.miro_enterprise_delete_project_member
Remove a member from a project. The user remains in the team even after the member is removed from a project.Note Projects have been renamed to Spaces, and the terms can be used interchangeably.Required scope projects:write Rate limiting Level 4 Enterprise onl
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_delete_project_member '{}' --json kosmo integrations:miro miro_enterprise_delete_project_member '{}' --json miro.miro_enterprise_create_team
Creates a new team in an existing organization. Required scope organizations:teams:write Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You can
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_create_team '{}' --json kosmo integrations:miro miro_enterprise_create_team '{}' --json miro.miro_enterprise_get_teams
Retrieves list of teams in an existing organization. Required scope organizations:teams:read Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_teams '{}' --json kosmo integrations:miro miro_enterprise_get_teams '{}' --json miro.miro_enterprise_get_team
Retrieves team information for an existing team. Required scope organizations:teams:read Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You can
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_team '{}' --json kosmo integrations:miro miro_enterprise_get_team '{}' --json miro.miro_enterprise_update_team
Updates an existing team. Required scope organizations:teams:write Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You can request temporary acc
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_update_team '{}' --json kosmo integrations:miro miro_enterprise_update_team '{}' --json miro.miro_enterprise_delete_team
Deletes an existing team. Required scope organizations:teams:write Rate limiting Level 4 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You can request temporary acc
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_delete_team '{}' --json kosmo integrations:miro miro_enterprise_delete_team '{}' --json miro.miro_enterprise_invite_team_member
Invites a new Miro user to an existing team. The user must exist in your Miro organization. Users who do not exist in your Miro organization can be invited to the team via [SCIM](https://developers.miro.com/docs/scim) and an external identity provider, such as
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_invite_team_member '{}' --json kosmo integrations:miro miro_enterprise_invite_team_member '{}' --json miro.miro_enterprise_get_team_members
Retrieves team members by cursor. Required scope organizations:teams:read Rate limiting Level 2 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You can request tempor
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_team_members '{}' --json kosmo integrations:miro miro_enterprise_get_team_members '{}' --json miro.miro_enterprise_get_team_member
Retrieves team member by id. Required scope organizations:teams:read Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You can request temporary a
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_team_member '{}' --json kosmo integrations:miro miro_enterprise_get_team_member '{}' --json miro.miro_enterprise_update_team_member
Updates team member role in team by id. Required scope organizations:teams:write Rate limiting Level 2 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You can request
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_update_team_member '{}' --json kosmo integrations:miro miro_enterprise_update_team_member '{}' --json miro.miro_enterprise_delete_team_member
Deletes team member from team by id. Required scope organizations:teams:write Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You can request te
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_delete_team_member '{}' --json kosmo integrations:miro miro_enterprise_delete_team_member '{}' --json miro.miro_enterprise_get_default_team_settings
Retrieves default team settings of an existing organization. Required scope organizations:teams:read Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Ad
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_default_team_settings '{}' --json kosmo integrations:miro miro_enterprise_get_default_team_settings '{}' --json miro.miro_enterprise_get_team_settings
Retrieves team settings of an existing team. Required scope organizations:teams:read Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You can req
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_team_settings '{}' --json kosmo integrations:miro miro_enterprise_get_team_settings '{}' --json miro.miro_enterprise_update_team_settings
Updates team settings of an existing team. Required scope organizations:teams:write Rate limiting Level 2 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You can requ
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_update_team_settings '{}' --json kosmo integrations:miro miro_enterprise_update_team_settings '{}' --json miro.miro_enterprise_get_groups
Retrieves the list of user groups in an organization. Required scope organizations:groups:read Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. Y
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_groups '{}' --json kosmo integrations:miro miro_enterprise_get_groups '{}' --json miro.miro_enterprise_create_group
Creates a new user group in an organization. Required scope organizations:groups:write Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You can r
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_create_group '{}' --json kosmo integrations:miro miro_enterprise_create_group '{}' --json miro.miro_enterprise_get_group
Retrieves a user group in an organization. Required scope organizations:groups:read Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You can requ
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_group '{}' --json kosmo integrations:miro miro_enterprise_get_group '{}' --json miro.miro_enterprise_update_group
Updates a user group in an organization. Required scope organizations:groups:write Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You can reque
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_update_group '{}' --json kosmo integrations:miro miro_enterprise_update_group '{}' --json miro.miro_enterprise_delete_group
Deletes a user group from an organization. Required scope organizations:groups:write Rate limiting Level 4 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You can req
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_delete_group '{}' --json kosmo integrations:miro miro_enterprise_delete_group '{}' --json miro.miro_enterprise_get_group_members
Retrieves the list of members who are part of a team in an existing organization. Required scope organizations:groups:read Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have th
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_group_members '{}' --json kosmo integrations:miro miro_enterprise_get_group_members '{}' --json miro.miro_enterprise_create_group_member
Adds a member to a user group in an organization. Required scope organizations:groups:write Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin. You
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_create_group_member '{}' --json kosmo integrations:miro miro_enterprise_create_group_member '{}' --json miro.miro_enterprise_update_group_members
Add and remove members in one request. For example, remove user A and add user B. You can add or remove up to 500 users at a time. Required scope organizations:groups:write Rate limiting Level 1 per item. For example, if you want to add 10 users and remove 5,
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_update_group_members '{}' --json kosmo integrations:miro miro_enterprise_update_group_members '{}' --json miro.miro_enterprise_get_group_member
Retrieves information about a user group member in an organization. Required scope organizations:groups:read Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Co
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_get_group_member '{}' --json kosmo integrations:miro miro_enterprise_get_group_member '{}' --json miro.miro_enterprise_delete_group_member
Removes a member from a user group in an organization. Required scope organizations:groups:write Rate limiting Level 4 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Admin.
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_delete_group_member '{}' --json kosmo integrations:miro miro_enterprise_delete_group_member '{}' --json miro.miro_enterprise_groups_get_teams
Retrieves the list of teams that the user group is a part of. Required scope organizations:groups:read organizations:teams:readRate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you hav
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_groups_get_teams '{}' --json kosmo integrations:miro miro_enterprise_groups_get_teams '{}' --json miro.miro_enterprise_groups_get_team
Retrieves information of a team that the user group is a part of in an organization. Required scope organizations:groups:read organizations:teams:readRate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use t
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_groups_get_team '{}' --json kosmo integrations:miro miro_enterprise_groups_get_team '{}' --json miro.miro_enterprise_teams_get_groups
Retrieves the list of user groups that are part of a team in an organization. Required scope organizations:groups:read organizations:teams:read Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this en
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_teams_get_groups '{}' --json kosmo integrations:miro miro_enterprise_teams_get_groups '{}' --json miro.miro_enterprise_teams_create_group
Adds a user group to a team in an organization. Required scope organizations:groups:read organizations:teams:write Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role o
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_teams_create_group '{}' --json kosmo integrations:miro miro_enterprise_teams_create_group '{}' --json miro.miro_enterprise_teams_get_group
Retrieves information about a specific user group of a team. Required scope organizations:groups:read organizations:teams:read Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you hav
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_teams_get_group '{}' --json kosmo integrations:miro miro_enterprise_teams_get_group '{}' --json miro.miro_enterprise_teams_delete_group
Removes a user group from a team in an existing organization. Required scope organizations:groups:read organizations:teams:write Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you h
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_teams_delete_group '{}' --json kosmo integrations:miro miro_enterprise_teams_delete_group '{}' --json miro.miro_enterprise_boards_get_groups
Retrieves information about user groups invited to the specified board. Required scope organizations:groups:read boards:read Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_boards_get_groups '{}' --json kosmo integrations:miro miro_enterprise_boards_get_groups '{}' --json miro.miro_enterprise_boards_create_group
Shares a board with user groups with a specified role. Updates the role if already shared. Required scope organizations:groups:read boards:write Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this e
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_boards_create_group '{}' --json kosmo integrations:miro miro_enterprise_boards_create_group '{}' --json miro.miro_enterprise_boards_delete_groups
Removes a user group from the specified board. Required scope organizations:groups:read boards:write Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Company Ad
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_boards_delete_groups '{}' --json kosmo integrations:miro miro_enterprise_boards_delete_groups '{}' --json miro.miro_enterprise_projects_get_groups
Retrieves information about user groups invited to the specified project. Required scope organizations:groups:read projects:read Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you h
read - Parameters
- none
kosmo integrations:call miro.miro_enterprise_projects_get_groups '{}' --json kosmo integrations:miro miro_enterprise_projects_get_groups '{}' --json miro.miro_enterprise_project_create_group
Shares a project with user groups with a specified role. Updates the role if already shared. Required scope organizations:groups:read projects:write Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use th
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_project_create_group '{}' --json kosmo integrations:miro miro_enterprise_project_create_group '{}' --json miro.miro_enterprise_project_delete_groups
Removes a user group from the specified project. Required scope organizations:groups:read projects:write Rate limiting Level 1 Enterprise only This API is available only for Enterprise plan users. You can only use this endpoint if you have the role of a Compan
write - Parameters
- none
kosmo integrations:call miro.miro_enterprise_project_delete_groups '{}' --json kosmo integrations:miro miro_enterprise_project_delete_groups '{}' --json Function Schemas
Use these parameter tables when building CLI payloads without calling integrations:schema first.
miro.miro_revoke_token 0 parameters
kosmo integrations:schema miro.miro_revoke_token --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_token_info 0 parameters
kosmo integrations:schema miro.miro_token_info --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_ai_interaction_logs 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_ai_interaction_logs --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_audit_logs 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_audit_logs --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_dataclassification_organization_settings_get 0 parameters
kosmo integrations:schema miro.miro_enterprise_dataclassification_organization_settings_get --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_dataclassification_team_boards_bulk 0 parameters
kosmo integrations:schema miro.miro_enterprise_dataclassification_team_boards_bulk --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_dataclassification_team_settings_get 0 parameters
kosmo integrations:schema miro.miro_enterprise_dataclassification_team_settings_get --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_dataclassification_team_settings_set 0 parameters
kosmo integrations:schema miro.miro_enterprise_dataclassification_team_settings_set --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_dataclassification_board_get 0 parameters
kosmo integrations:schema miro.miro_enterprise_dataclassification_board_get --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_dataclassification_board_set 0 parameters
kosmo integrations:schema miro.miro_enterprise_dataclassification_board_set --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_doc_format_item 0 parameters
kosmo integrations:schema miro.miro_create_doc_format_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_doc_format_item 0 parameters
kosmo integrations:schema miro.miro_get_doc_format_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_doc_format_item 0 parameters
kosmo integrations:schema miro.miro_delete_doc_format_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_all_cases 0 parameters
kosmo integrations:schema miro.miro_get_all_cases --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_case 0 parameters
kosmo integrations:schema miro.miro_create_case --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_case 0 parameters
kosmo integrations:schema miro.miro_delete_case --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_case 0 parameters
kosmo integrations:schema miro.miro_get_case --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_edit_case 0 parameters
kosmo integrations:schema miro.miro_edit_case --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_all_legal_holds 0 parameters
kosmo integrations:schema miro.miro_get_all_legal_holds --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_legal_hold 0 parameters
kosmo integrations:schema miro.miro_create_legal_hold --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_legal_hold_export_jobs 0 parameters
kosmo integrations:schema miro.miro_get_legal_hold_export_jobs --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_legal_hold 0 parameters
kosmo integrations:schema miro.miro_delete_legal_hold --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_legal_hold 0 parameters
kosmo integrations:schema miro.miro_get_legal_hold --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_edit_legal_hold 0 parameters
kosmo integrations:schema miro.miro_edit_legal_hold --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_legal_hold_content_items 0 parameters
kosmo integrations:schema miro.miro_get_legal_hold_content_items --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_create_board_export 0 parameters
kosmo integrations:schema miro.miro_enterprise_create_board_export --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_board_export_jobs 0 parameters
kosmo integrations:schema miro.miro_enterprise_board_export_jobs --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_board_export_job_status 0 parameters
kosmo integrations:schema miro.miro_enterprise_board_export_job_status --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_board_export_job_results 0 parameters
kosmo integrations:schema miro.miro_enterprise_board_export_job_results --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_update_board_export_job 0 parameters
kosmo integrations:schema miro.miro_enterprise_update_board_export_job --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_board_export_job_tasks 0 parameters
kosmo integrations:schema miro.miro_enterprise_board_export_job_tasks --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_create_board_export_task_export_link 0 parameters
kosmo integrations:schema miro.miro_enterprise_create_board_export_task_export_link --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_board_content_item_logs_fetch 0 parameters
kosmo integrations:schema miro.miro_enterprise_board_content_item_logs_fetch --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_post_user_sessions_reset 0 parameters
kosmo integrations:schema miro.miro_enterprise_post_user_sessions_reset --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_list_users 0 parameters
kosmo integrations:schema miro.miro_list_users --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_user 0 parameters
kosmo integrations:schema miro.miro_create_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_user 0 parameters
kosmo integrations:schema miro.miro_get_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_replace_user 0 parameters
kosmo integrations:schema miro.miro_replace_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_patch_user 0 parameters
kosmo integrations:schema miro.miro_patch_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_user 0 parameters
kosmo integrations:schema miro.miro_delete_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_list_groups 0 parameters
kosmo integrations:schema miro.miro_list_groups --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_group 0 parameters
kosmo integrations:schema miro.miro_get_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_patch_group 0 parameters
kosmo integrations:schema miro.miro_patch_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_list_service_provider_configs 0 parameters
kosmo integrations:schema miro.miro_list_service_provider_configs --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_list_resource_types 0 parameters
kosmo integrations:schema miro.miro_list_resource_types --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_resource_type 0 parameters
kosmo integrations:schema miro.miro_get_resource_type --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_list_schemas 0 parameters
kosmo integrations:schema miro.miro_list_schemas --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_schema 0 parameters
kosmo integrations:schema miro.miro_get_schema --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_organization 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_organization --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_organization_members 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_organization_members --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_organization_member 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_organization_member --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_board 0 parameters
kosmo integrations:schema miro.miro_create_board --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_boards 0 parameters
kosmo integrations:schema miro.miro_get_boards --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_copy_board 0 parameters
kosmo integrations:schema miro.miro_copy_board --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_specific_board 0 parameters
kosmo integrations:schema miro.miro_get_specific_board --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_board 0 parameters
kosmo integrations:schema miro.miro_update_board --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_board 0 parameters
kosmo integrations:schema miro.miro_delete_board --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_app_card_item 0 parameters
kosmo integrations:schema miro.miro_create_app_card_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_app_card_item 0 parameters
kosmo integrations:schema miro.miro_get_app_card_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_app_card_item 0 parameters
kosmo integrations:schema miro.miro_update_app_card_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_app_card_item 0 parameters
kosmo integrations:schema miro.miro_delete_app_card_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_card_item 0 parameters
kosmo integrations:schema miro.miro_create_card_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_card_item 0 parameters
kosmo integrations:schema miro.miro_get_card_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_card_item 0 parameters
kosmo integrations:schema miro.miro_update_card_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_card_item 0 parameters
kosmo integrations:schema miro.miro_delete_card_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_connector 0 parameters
kosmo integrations:schema miro.miro_create_connector --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_connectors 0 parameters
kosmo integrations:schema miro.miro_get_connectors --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_connector 0 parameters
kosmo integrations:schema miro.miro_get_connector --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_connector 0 parameters
kosmo integrations:schema miro.miro_update_connector --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_connector 0 parameters
kosmo integrations:schema miro.miro_delete_connector --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_document_item_using_url 0 parameters
kosmo integrations:schema miro.miro_create_document_item_using_url --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_document_item 0 parameters
kosmo integrations:schema miro.miro_get_document_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_document_item_using_url 0 parameters
kosmo integrations:schema miro.miro_update_document_item_using_url --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_document_item 0 parameters
kosmo integrations:schema miro.miro_delete_document_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_embed_item 0 parameters
kosmo integrations:schema miro.miro_create_embed_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_embed_item 0 parameters
kosmo integrations:schema miro.miro_get_embed_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_embed_item 0 parameters
kosmo integrations:schema miro.miro_update_embed_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_embed_item 0 parameters
kosmo integrations:schema miro.miro_delete_embed_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_image_item_using_url 0 parameters
kosmo integrations:schema miro.miro_create_image_item_using_url --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_image_item 0 parameters
kosmo integrations:schema miro.miro_get_image_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_image_item_using_url 0 parameters
kosmo integrations:schema miro.miro_update_image_item_using_url --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_image_item 0 parameters
kosmo integrations:schema miro.miro_delete_image_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_items 0 parameters
kosmo integrations:schema miro.miro_get_items --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_specific_item 0 parameters
kosmo integrations:schema miro.miro_get_specific_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_item_position_or_parent 0 parameters
kosmo integrations:schema miro.miro_update_item_position_or_parent --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_item 0 parameters
kosmo integrations:schema miro.miro_delete_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_board_members 0 parameters
kosmo integrations:schema miro.miro_get_board_members --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_specific_board_member 0 parameters
kosmo integrations:schema miro.miro_get_specific_board_member --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_board_member 0 parameters
kosmo integrations:schema miro.miro_update_board_member --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_remove_board_member 0 parameters
kosmo integrations:schema miro.miro_remove_board_member --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_shape_item 0 parameters
kosmo integrations:schema miro.miro_create_shape_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_shape_item 0 parameters
kosmo integrations:schema miro.miro_get_shape_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_shape_item 0 parameters
kosmo integrations:schema miro.miro_update_shape_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_shape_item 0 parameters
kosmo integrations:schema miro.miro_delete_shape_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_sticky_note_item 0 parameters
kosmo integrations:schema miro.miro_create_sticky_note_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_sticky_note_item 0 parameters
kosmo integrations:schema miro.miro_get_sticky_note_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_sticky_note_item 0 parameters
kosmo integrations:schema miro.miro_update_sticky_note_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_sticky_note_item 0 parameters
kosmo integrations:schema miro.miro_delete_sticky_note_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_text_item 0 parameters
kosmo integrations:schema miro.miro_create_text_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_text_item 0 parameters
kosmo integrations:schema miro.miro_get_text_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_text_item 0 parameters
kosmo integrations:schema miro.miro_update_text_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_text_item 0 parameters
kosmo integrations:schema miro.miro_delete_text_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_items 0 parameters
kosmo integrations:schema miro.miro_create_items --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_frame_item 0 parameters
kosmo integrations:schema miro.miro_create_frame_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_frame_item 0 parameters
kosmo integrations:schema miro.miro_get_frame_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_frame_item 0 parameters
kosmo integrations:schema miro.miro_update_frame_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_frame_item 0 parameters
kosmo integrations:schema miro.miro_delete_frame_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_items_within_frame 0 parameters
kosmo integrations:schema miro.miro_get_items_within_frame --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_items_in_bulk_using_file_from_device 0 parameters
kosmo integrations:schema miro.miro_create_items_in_bulk_using_file_from_device --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_metrics 0 parameters
kosmo integrations:schema miro.miro_get_metrics --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_metrics_total 0 parameters
kosmo integrations:schema miro.miro_get_metrics_total --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_mindmap_node_experimental 0 parameters
kosmo integrations:schema miro.miro_get_mindmap_node_experimental --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_mindmap_node_experimental 0 parameters
kosmo integrations:schema miro.miro_delete_mindmap_node_experimental --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_mindmap_nodes_experimental 0 parameters
kosmo integrations:schema miro.miro_get_mindmap_nodes_experimental --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_mindmap_nodes_experimental 0 parameters
kosmo integrations:schema miro.miro_create_mindmap_nodes_experimental --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_items_experimental 0 parameters
kosmo integrations:schema miro.miro_get_items_experimental --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_specific_item_experimental 0 parameters
kosmo integrations:schema miro.miro_get_specific_item_experimental --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_item_experimental 0 parameters
kosmo integrations:schema miro.miro_delete_item_experimental --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_shape_item_flowchart 0 parameters
kosmo integrations:schema miro.miro_create_shape_item_flowchart --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_shape_item_flowchart 0 parameters
kosmo integrations:schema miro.miro_get_shape_item_flowchart --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_shape_item_flowchart 0 parameters
kosmo integrations:schema miro.miro_update_shape_item_flowchart --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_shape_item_flowchart 0 parameters
kosmo integrations:schema miro.miro_delete_shape_item_flowchart --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_code_widget_items 0 parameters
kosmo integrations:schema miro.miro_get_code_widget_items --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_code_widget_item 0 parameters
kosmo integrations:schema miro.miro_create_code_widget_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_code_widget_item 0 parameters
kosmo integrations:schema miro.miro_get_code_widget_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_code_widget_item 0 parameters
kosmo integrations:schema miro.miro_update_code_widget_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_code_widget_item 0 parameters
kosmo integrations:schema miro.miro_delete_code_widget_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_move_code_widget_item 0 parameters
kosmo integrations:schema miro.miro_move_code_widget_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_document_item_using_file_from_device 0 parameters
kosmo integrations:schema miro.miro_create_document_item_using_file_from_device --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_document_item_using_file_from_device 0 parameters
kosmo integrations:schema miro.miro_update_document_item_using_file_from_device --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_image_item_using_local_file 0 parameters
kosmo integrations:schema miro.miro_create_image_item_using_local_file --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_image_item_using_file_from_device 0 parameters
kosmo integrations:schema miro.miro_update_image_item_using_file_from_device --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_group 0 parameters
kosmo integrations:schema miro.miro_create_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_all_groups 0 parameters
kosmo integrations:schema miro.miro_get_all_groups --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_items_by_group_id 0 parameters
kosmo integrations:schema miro.miro_get_items_by_group_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_group_by_id 0 parameters
kosmo integrations:schema miro.miro_get_group_by_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_un_group 0 parameters
kosmo integrations:schema miro.miro_un_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_group 0 parameters
kosmo integrations:schema miro.miro_update_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_group 0 parameters
kosmo integrations:schema miro.miro_delete_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_revoke_token_v2 0 parameters
kosmo integrations:schema miro.miro_revoke_token_v2 --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_tags_from_item 0 parameters
kosmo integrations:schema miro.miro_get_tags_from_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_create_tag 0 parameters
kosmo integrations:schema miro.miro_create_tag --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_tags_from_board 0 parameters
kosmo integrations:schema miro.miro_get_tags_from_board --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_tag 0 parameters
kosmo integrations:schema miro.miro_get_tag --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_update_tag 0 parameters
kosmo integrations:schema miro.miro_update_tag --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_delete_tag 0 parameters
kosmo integrations:schema miro.miro_delete_tag --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_get_items_by_tag 0 parameters
kosmo integrations:schema miro.miro_get_items_by_tag --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_attach_tag_to_item 0 parameters
kosmo integrations:schema miro.miro_attach_tag_to_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_remove_tag_from_item 0 parameters
kosmo integrations:schema miro.miro_remove_tag_from_item --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_create_project 0 parameters
kosmo integrations:schema miro.miro_enterprise_create_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_projects 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_projects --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_project 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_update_project 0 parameters
kosmo integrations:schema miro.miro_enterprise_update_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_delete_project 0 parameters
kosmo integrations:schema miro.miro_enterprise_delete_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_project_settings 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_project_settings --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_update_project_settings 0 parameters
kosmo integrations:schema miro.miro_enterprise_update_project_settings --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_add_project_member 0 parameters
kosmo integrations:schema miro.miro_enterprise_add_project_member --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_project_members 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_project_members --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_project_member 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_project_member --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_update_project_member 0 parameters
kosmo integrations:schema miro.miro_enterprise_update_project_member --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_delete_project_member 0 parameters
kosmo integrations:schema miro.miro_enterprise_delete_project_member --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_create_team 0 parameters
kosmo integrations:schema miro.miro_enterprise_create_team --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_teams 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_teams --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_team 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_team --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_update_team 0 parameters
kosmo integrations:schema miro.miro_enterprise_update_team --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_delete_team 0 parameters
kosmo integrations:schema miro.miro_enterprise_delete_team --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_invite_team_member 0 parameters
kosmo integrations:schema miro.miro_enterprise_invite_team_member --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_team_members 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_team_members --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_team_member 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_team_member --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_update_team_member 0 parameters
kosmo integrations:schema miro.miro_enterprise_update_team_member --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_delete_team_member 0 parameters
kosmo integrations:schema miro.miro_enterprise_delete_team_member --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_default_team_settings 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_default_team_settings --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_team_settings 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_team_settings --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_update_team_settings 0 parameters
kosmo integrations:schema miro.miro_enterprise_update_team_settings --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_groups 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_groups --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_create_group 0 parameters
kosmo integrations:schema miro.miro_enterprise_create_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_group 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_update_group 0 parameters
kosmo integrations:schema miro.miro_enterprise_update_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_delete_group 0 parameters
kosmo integrations:schema miro.miro_enterprise_delete_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_group_members 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_group_members --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_create_group_member 0 parameters
kosmo integrations:schema miro.miro_enterprise_create_group_member --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_update_group_members 0 parameters
kosmo integrations:schema miro.miro_enterprise_update_group_members --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_get_group_member 0 parameters
kosmo integrations:schema miro.miro_enterprise_get_group_member --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_delete_group_member 0 parameters
kosmo integrations:schema miro.miro_enterprise_delete_group_member --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_groups_get_teams 0 parameters
kosmo integrations:schema miro.miro_enterprise_groups_get_teams --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_groups_get_team 0 parameters
kosmo integrations:schema miro.miro_enterprise_groups_get_team --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_teams_get_groups 0 parameters
kosmo integrations:schema miro.miro_enterprise_teams_get_groups --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_teams_create_group 0 parameters
kosmo integrations:schema miro.miro_enterprise_teams_create_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_teams_get_group 0 parameters
kosmo integrations:schema miro.miro_enterprise_teams_get_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_teams_delete_group 0 parameters
kosmo integrations:schema miro.miro_enterprise_teams_delete_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_boards_get_groups 0 parameters
kosmo integrations:schema miro.miro_enterprise_boards_get_groups --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_boards_create_group 0 parameters
kosmo integrations:schema miro.miro_enterprise_boards_create_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_boards_delete_groups 0 parameters
kosmo integrations:schema miro.miro_enterprise_boards_delete_groups --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_projects_get_groups 0 parameters
kosmo integrations:schema miro.miro_enterprise_projects_get_groups --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_project_create_group 0 parameters
kosmo integrations:schema miro.miro_enterprise_project_create_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
miro.miro_enterprise_project_delete_groups 0 parameters
kosmo integrations:schema miro.miro_enterprise_project_delete_groups --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
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.