resources_insertTrainingCompletion

WRITE

Insert training completion.

Parameters

trainingAssignmentIdstringrequired
employeeIdstringrequired
periodstringnullrequired
completedBystringrequired

Call it

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

call_tool
call_tool({
  "name": "resources_insertTrainingCompletion",
  "arguments": {
    "trainingAssignmentId": "string",
    "employeeId": "string",
    "period": "string",
    "completedBy": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "trainingAssignmentId": {
      "type": "string"
    },
    "employeeId": {
      "type": "string"
    },
    "period": {
      "type": [
        "string",
        "null"
      ]
    },
    "completedBy": {
      "type": "string"
    }
  },
  "required": [
    "trainingAssignmentId",
    "employeeId",
    "period",
    "completedBy"
  ]
}