Skip to main content
POST
/
external
/
datastores
/
file-upload
/
process
/
{id}
Dispara el procesamiento de un archivo ya subido
curl --request POST \
  --url https://app.braviloai.com/api/external/datastores/file-upload/process/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>"
}
'
{
  "id": "<string>",
  "type": "<string>",
  "name": "<string>",
  "status": "unsynched",
  "groupId": "<string>",
  "updatedAt": "2023-12-25",
  "createdAt": "2023-12-25",
  "lastSynch": "2023-12-25",
  "config": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.braviloai.com/llms.txt

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

Dispara el procesamiento de un archivo que ya fue subido a S3 (ya sea vía upload directo o link prefirmado).

Ejemplo

curl -X POST https://app.braviloai.com/api/external/datastores/file-upload/process/${datastoreId} \
-H "Authorization: Bearer ${API_KEY}" \
-H "Content-Type: application/json" \
-d '{"id": "datasource-id-devuelto"}'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

ID del datastore

Body

application/json
id
string
required

ID del datasource (devuelto por upload o generate-link)

Response

Procesamiento iniciado

id
string
type
string
name
string
status
enum<string>
Available options:
unsynched,
pending,
running,
synched,
error,
usage_limit_reached
groupId
string
updatedAt
string<date>
createdAt
string<date>
lastSynch
string<date>
config
object