The StaffAiSettings Object


AI settings configuration for a staff member, controlling which AI features and recommendations are enabled

Properties

NameDescriptionTypeRequired
staff_uidThe unique identifier of the staff member these settings belong tostringYes
ai_recommendationsAI recommendations settings configuration for a staff memberobjectYes
created_atThe timestamp when the settings were created, in ISO 8601 formatstring
updated_atThe timestamp when the settings were last updated, in ISO 8601 formatstring

Ai Recommendations Properties

NameDescriptionTypeRequired
enableWhether AI recommendations are enabled for this staff memberbooleanYes
sub_optionsSpecific AI recommendation sub-options that can be enabled or disabled individuallyobjectYes

Example

JSON

{
  "staff_uid": "f390f1ee-6c54-4b01-90e6-d701748f0852",
  "ai_recommendations": {
    "enable": true,
    "sub_options": {
      "next_best_action": true,
      "estimate": false,
      "scheduling": true
    }
  },
  "created_at": "2025-01-20T14:00:00.000Z",
  "updated_at": "2025-01-20T14:30:00.000Z"
}