Skip to main content
POST
/
api
/
agents
/
{id}
/
config
Create agent config
curl --request POST \
  --url https://rippletide-backend.azurewebsites.net/api/agents/{id}/config \
  --header 'Content-Type: application/json' \
  --data '
{
  "label": "<string>",
  "description": "<string>",
  "type": "knowledge"
}
'
{
  "id": 123,
  "label": "<string>",
  "description": "<string>",
  "type": "knowledge",
  "node_count": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Path Parameters

id
string<uuid>
required

Body

application/json
label
string
required
description
string
required
type
enum<string>
default:knowledge
Available options:
knowledge,
guardrail

Response

Config created

id
integer
label
string
description
string
type
enum<string>
Available options:
knowledge,
guardrail
node_count
integer
created_at
string<date-time>
updated_at
string<date-time>