Skip to main content
PUT
/
agents
/
{agentId}
/
extractors
/
{extractorId}
Update extractor
curl --request PUT \
  --url https://api.vogent.ai/api/agents/{agentId}/extractors/{extractorId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "extractorFieldsJsonSchema": "<string>"
}'
{
  "id": "<string>",
  "name": "<string>",
  "extractorFieldsJsonSchema": "<string>"
}

Authorizations

Authorization
string
header
required

In the form Bearer <api_key_here>. You can find your api key in your dashboard.

Path Parameters

agentId
string
required

ID of the agent.

extractorId
string
required

ID of the extractor.

Body

application/json

Update an extractor

name
string
extractorFieldsJsonSchema
string

Response

Successful operation

id
string
required
name
string
required
extractorFieldsJsonSchema
string
required
I