Documentation Index
Fetch the complete documentation index at: https://docs.tryfltr.com/llms.txt
Use this file to discover all available pages before exploring further.
Request
Updates dataset properties. Only provided fields will be updated.
Path Parameters
The unique dataset identifier
Bearer token for authentication
Body
New dataset name (1-200 characters)
New description (max 1000 characters)
Update public accessibility
Update metadata (merges with existing)
Examples
curl -X PATCH https://api.fltr.com/v1/datasets/ds_abc123 \
-H "Authorization: Bearer fltr_sk_abc123..." \
-H "Content-Type: application/json" \
-d '{"name": "Updated Name", "description": "New description"}'
response = requests.patch(
"https://api.fltr.com/v1/datasets/ds_abc123",
headers={"Authorization": "Bearer fltr_sk_abc123..."},
json={"name": "Updated Name"}
)
Response
{
"id": "ds_abc123",
"name": "Updated Name",
"description": "New description",
"is_public": false,
"document_count": 42,
"created_at": "2024-01-10T12:00:00Z",
"updated_at": "2024-01-10T16:00:00Z"
}