shared_getLatestApprovalRequestForDocument

READ

Get latest approval request for document.

Parameters

documentTypestringrequired
documentIdstringrequired

Call it

Invoke it through the call_tool meta-tool with its arguments:

call_tool
call_tool({
  "name": "shared_getLatestApprovalRequestForDocument",
  "arguments": {
    "documentType": "string",
    "documentId": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "documentType": {
      "type": "string"
    },
    "documentId": {
      "type": "string"
    }
  },
  "required": [
    "documentType",
    "documentId"
  ]
}