Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Beebole legacy API — Task operations.
{ "service": "task.create", "task": { "name": "Meeting", "company": {"id": 233} } }
{ "status": "ok", "id": 955 }
{ "service": "task.get", "id": 955 }
{ "status" : "ok", "task" : { "id" : 955, "name" : "Meeting", "company" : {"id" : 233}, "active" : true } }
{ "service" : "task.update", "task" : { "id" : 955, "name" : "newName" } }
{"status" : "ok"}
{ "service": "task.list", "company" : {"id" : 233} }
{ "status": "ok", "tasks": [ { "id" : 955, "name" : "Meeting", "company" : {"id" : 233}, "active" : true }, ... ] }
{ "service": "task.activate", "id": 955 }
{"status": "ok"}
{ "service": "task.deactivate", "id": 955 }
{ "service" : "task.add_group", "id" : 78, "group" : { "id" : 105 } }
{ "service" : "task.remove_group", "id" : 78, "group" : { "id" : 105 } }
{ "service" : "task.groups", "id" : 78 }
{ "status":"ok", "groups":[ { "id":4787, "name":"US", "groups":{"count":4} }, ... ] }
Was this page helpful?