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 — Company operations.
{ "service": "company.create", "company": { "name": "myCompany", "corporate" : true //optional: is the company corporate or customer ? default false (customer) } }
{ "status": "ok", "id": 233 }
{ "service": "company.get", "id": 233 }
{ "status" : "ok", "company" : { "id" : 233, "name" : "myCompany", "projects": { "count": 3 }, "active" : true } }
{ "service" : "company.update", "company" : { "id" : 233, "name" : "newName" } }
{"status" : "ok"}
{ "service": "company.list" }
{ "status" : "ok", "companies": [ { "id" : 233, "name" : "myCompany", "projects": {"count": 3}, "active" : true }, ... ] }
{ "service": "company.activate", "id": 233 }
{"status": "ok"}
{ "service": "company.deactivate", "id": 233 }
{ "service" : "company.attach_specific_task", "id" : 78, "task" : { "id" : 43 } }
{ "service" : "company.detach_specific_task", "id" : 78, "task" : { "id" : 43 } }
{ "service" : "company.specific_tasks", "id" : 78 }
{ "status" : "ok", "disabled" : false, //default : false "specificTasks": [ { "name" : "Administration", "id" : 345, "active":true }, ... ] }
{ "service" : "company.enable_specific_tasks", "id" : 78 }
{ "service" : "company.disable_specific_tasks", "id" : 78 }
{ "service" : "company.attach_member", "id" : 78, "person" : { // "person" or "group" "id" : 43 } }
{ "service" : "company.detach_member", "id" : 78, "person" : { // "person" or "group" "id" : 43 } }
{ "service" : "company.members", "id" : 78 }
{ "status" : "ok", "members": [ { "name" : "John Le Carré", "id" : 345 }, ... ], "groups": [ { "name" : "US", "id" : 978 }, ... ] }
{ "service" : "company.add_group", "id" : 78, "group" : { "id" : 105 } }
{ "service" : "company.remove_group", "id" : 78, "group" : { "id" : 105 } }
{ "service" : "company.groups", "id" : 78 }
{ "status":"ok", "groups":[ { "id":4787, "name":"US", "groups":{"count":4} }, ... ] }
{ "service" : "company.set_custom_field_value", "id" : 78, "customField" : { "id" : 7206, "value" : "Transportation" } }
{ "service" : "company.clear_custom_field_value", "id" : 78, "customField" : { "id" : 7206 } }
{ "service" : "company.custom_fields", "id" : 78 }
{ "status":"ok", "customFields":[ { "id" : 7206, "name" : "Industry", "value" : "Transportation" }, { "id" : 4149, "name" : "location" }, ... ] }
Was this page helpful?