Pular para o conteúdo principal
POST
/
v1
/
public
/
agents
/
conversations
/
{conversation_id}
/
files
Upload a file to a conversation
curl --request POST \
  --url https://api.quintus.tec.br/v1/public/agents/conversations/{conversation_id}/files \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form file='@example-file'
{
  "id": "<string>",
  "name": "<string>",
  "size": 123,
  "mime_type": "<string>",
  "created_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://quintus.tec.br/docs/llms.txt

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

Autorizações

Authorization
string
header
obrigatório

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

Parâmetros de caminho

conversation_id
string
obrigatório

Corpo

multipart/form-data
file
file
obrigatório

Resposta

Successful Response

id
string
obrigatório
name
string
obrigatório
size
integer
obrigatório
mime_type
string
obrigatório
created_at
string<date-time>
obrigatório