Loxo MCP Server
by tbensonwest
add-to-call-queue
Add a candidate or contact to the call queue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entity_id | Yes | ID of the candidate or contact | |
entity_type | Yes | Type of entity (candidate or contact) | |
notes | No | Notes about why this call is needed | |
priority | No | Priority level for the call | medium |
Input Schema (JSON Schema)
{
"properties": {
"entity_id": {
"description": "ID of the candidate or contact",
"type": "string"
},
"entity_type": {
"description": "Type of entity (candidate or contact)",
"enum": [
"candidate",
"contact"
],
"type": "string"
},
"notes": {
"description": "Notes about why this call is needed",
"type": "string"
},
"priority": {
"default": "medium",
"description": "Priority level for the call",
"enum": [
"high",
"medium",
"low"
],
"type": "string"
}
},
"required": [
"entity_type",
"entity_id"
],
"type": "object"
}