GET
/
api
/
workers
/
{workerId}
/
deployments
/
chat
/
{deploymentId}
Get a single chat deployment by ID
curl --request GET \
  --url https://brainbase-monorepo-api.onrender.com/api/workers/{workerId}/deployments/chat/{deploymentId} \
  --header 'x-api-key: <api-key>'
{
  "id": "<string>",
  "allowedUsers": "<string>",
  "welcomeMessage": "<string>",
  "llmModel": "<string>",
  "modelConfig": {},
  "chatAgentId": "<string>"
}

Authorizations

x-api-key
string
header
required

API key authentication

Path Parameters

workerId
string
required
deploymentId
string
required

Response

Chat deployment details

id
string
required
allowedUsers
string
required
modelConfig
object
required
chatAgentId
string
required
welcomeMessage
string | null
llmModel
string | null