Skip to main content
POST
/
api
/
v1
/
agents
/
{agent_id}
/
publish
Publish Agent
curl --request POST \
  --url https://colloqui-web-develop-btoadh.laravel.cloud/api/v1/agents/{agent_id}/publish \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "Updated greeting message and improved response time."
}
'

Documentation Index

Fetch the complete documentation index at: https://cooloquiptyltd.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token authentication

Path Parameters

agent_id
string
required

The ID of the agent.

Body

application/json
description
string | null

Optional description for this version of the agent. Must not be greater than 1000 characters.

Example:

"Updated greeting message and improved response time."

Response

204

No Content