Loxo MCP Server

schedule-activity

Schedule a future activity (like a call or meeting)

Input Schema

NameRequiredDescriptionDefault
activity_type_idYesID of the activity type
entity_idYesID of the entity
entity_typeYesType of entity (candidate, contact, job)
notesNoNotes about the scheduled activity
scheduled_forYesISO datetime when the activity should occur

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, contact, job)", "enum": [ "candidate", "contact", "job" ], "type": "string" }, "notes": { "description": "Notes about the scheduled activity", "type": "string" }, "scheduled_for": { "description": "ISO datetime when the activity should occur", "type": "string" } }, "required": [ "entity_type", "entity_id", "activity_type_id", "scheduled_for" ], "type": "object" }