SerenAI

Pay Per Call Agentic Commerce

OrganizationPrivateModelsPolicy

Properties

PropertyTypeRequiredDescription
allow_claude_agent boolean No
allow_cloud_agent_launch boolean No
allow_codex_agent boolean No
allow_seren_agent boolean No
allow_seren_private_agent boolean No
deployment_id string,null No
deployment_name string,null No
disable_external_model_providers boolean No
disable_local_agents boolean No
disable_seren_models boolean No
fallback_models array,null No
global_ordered_model_ids array,null No
hide_model_picker boolean No
mode OrganizationPrivateModelsMode Yes
model_id string,null No
ordered_model_ids array,null No
organization_id string Yes
private_output_policy ManagedAgentPrivateOutputPolicy No
session_database any No
updated_at string Yes
View JSON Schema
{
  "type": "object",
  "required": [
    "organization_id",
    "mode",
    "updated_at"
  ],
  "properties": {
    "allow_claude_agent": {
      "type": "boolean"
    },
    "allow_cloud_agent_launch": {
      "type": "boolean"
    },
    "allow_codex_agent": {
      "type": "boolean"
    },
    "allow_seren_agent": {
      "type": "boolean"
    },
    "allow_seren_private_agent": {
      "type": "boolean"
    },
    "deployment_id": {
      "type": [
        "string",
        "null"
      ],
      "format": "uuid"
    },
    "deployment_name": {
      "type": [
        "string",
        "null"
      ]
    },
    "disable_external_model_providers": {
      "type": "boolean"
    },
    "disable_local_agents": {
      "type": "boolean"
    },
    "disable_seren_models": {
      "type": "boolean"
    },
    "fallback_models": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "type": "string"
      }
    },
    "global_ordered_model_ids": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "type": "string"
      }
    },
    "hide_model_picker": {
      "type": "boolean"
    },
    "mode": {
      "$ref": "#/components/schemas/OrganizationPrivateModelsMode"
    },
    "model_id": {
      "type": [
        "string",
        "null"
      ]
    },
    "ordered_model_ids": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "type": "string"
      }
    },
    "organization_id": {
      "type": "string",
      "format": "uuid"
    },
    "private_output_policy": {
      "$ref": "#/components/schemas/ManagedAgentPrivateOutputPolicy"
    },
    "session_database": {
      "oneOf": [
        {
          "type": "null"
        },
        {
          "$ref": "#/components/schemas/ManagedAgentSessionDatabase"
        }
      ]
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    }
  }
}