Loxo MCP Server

log-activity

Log an activity for a candidate or job

Input Schema

NameRequiredDescriptionDefault
activity_type_idYesID of the activity type
entity_idYesID of the entity
entity_typeYesType of entity (candidate or job)
notesNoNotes about the activity

Input Schema (JSON Schema)

{ "properties": { "activity_type_id": { "description": "ID of the activity type", "type": "string" }, "entity_id": { "description": "ID of the entity", "type": "string" }, "entity_type": { "description": "Type of entity (candidate or job)", "enum": [ "candidate", "job" ], "type": "string" }, "notes": { "description": "Notes about the activity", "type": "string" } }, "required": [ "entity_type", "entity_id", "activity_type_id" ], "type": "object" }