get-board-export-job-status
Check the status of a board export job in Miro by providing the organization ID and job ID, ensuring progress tracking for enterprise users.
Instructions
Retrieves the status of a board export job (Enterprise only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
jobId | Yes | Unique identifier of the board export 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 board export job",
"type": "string"
},
"orgId": {
"description": "Unique identifier of the organization",
"type": "string"
}
},
"required": [
"orgId",
"jobId"
],
"type": "object"
}