get-approval-status
Check the approval status of a request by polling with the approval ID. Designed for tracking changes in approval workflows within structured spec-driven development environments.
Instructions
Check the status of an approval request. Use this to poll for approval status changes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
approvalId | Yes | The ID of the approval request to check |
Input Schema (JSON Schema)
{
"properties": {
"approvalId": {
"description": "The ID of the approval request to check",
"type": "string"
}
},
"required": [
"approvalId"
],
"type": "object"
}