get-board-export-job-results
Retrieve the results of a board export job by specifying the organization and job ID. Designed for enterprise users within the Miro MCP server.
Instructions
Retrieves the results of a board export job (Enterprise only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
jobId | Yes | Unique identifier of the job | |
orgId | Yes | Unique identifier of the organization |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"jobId": {
"description": "Unique identifier of the job",
"type": "string"
},
"orgId": {
"description": "Unique identifier of the organization",
"type": "string"
}
},
"required": [
"orgId",
"jobId"
],
"type": "object"
}