Skip to main content
PATCH
/
organization
/
rag
/
sources
/
texts
/
{uuid}
Update text source
curl --request PATCH \
  --url https://api.getfernand.com/organization/rag/sources/texts/{uuid} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "text": "This is updated information about our product features..."
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://developers.getfernand.com/llms.txt

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

Updates an existing text source identified by its UUID. Only sources of type “Text” can be updated through this endpoint.

Authorizations

X-API-Key
string
header
required

Authenticate your account by including your secret key in API requests. You can manage your API keys in the Dashboard.

Authentication to the API is performed by using the HTTP Header X-API-Key.

Path Parameters

uuid
string
required

UUID of the text source to update.

Body

application/json
text
string
required

Updated text content.

Maximum string length: 50000
Example:

"This is updated information about our product features..."

Response

Text source queued for update.

The response is of type object.