get_hex_run_status
Retrieve the status of a specific project run by providing the project and run UUIDs. The response returns detailed run status in JSON format for monitoring and management.
Instructions
Get the status of a project run.
Args:
project_id: The UUID of the Hex project
run_id: The UUID of the run
Returns:
JSON string with run status details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | ||
run_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "string"
},
"run_id": {
"title": "Run Id",
"type": "string"
}
},
"required": [
"project_id",
"run_id"
],
"title": "get_hex_run_statusArguments",
"type": "object"
}