curl --request PATCH \
--url https://api.example.com/api/v1/user-extractions/{extraction_id}/rename \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Rename an extraction (update its title in metadata).
Args: extraction_id: The ID of the extraction to rename rename_request: Request body containing the new title current_user: Authenticated user information settings: Application settings
Returns: Success response with updated extraction info
Raises: HTTPException: If extraction not found or access denied
curl --request PATCH \
--url https://api.example.com/api/v1/user-extractions/{extraction_id}/rename \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Documentation Index
Fetch the complete documentation index at: https://bavlio.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Request model for renaming an extraction.
New title for the extraction
1 - 200Successful Response