resources_upsertTrainingAssignment

WRITE

Upsert training assignment.

Parameters

trainingIdstringrequired
groupIdsstring[]required
idstringoptional

Call it

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

call_tool
call_tool({
  "name": "resources_upsertTrainingAssignment",
  "arguments": {
    "trainingId": "string",
    "groupIds": []
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "trainingId": {
      "type": "string"
    },
    "groupIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "trainingId",
    "groupIds"
  ]
}