POST
/
files
Upload File
curl --request POST \
  --url https://api.callhq.ai/api/files \
  --header 'Content-Type: multipart/form-data' \
  --header 'x-api-key: <api-key>' \
  --form file=@example-file
{
  "message": "File uploaded successfully",
  "file": {
    "id": "<string>",
    "externalId": "<string>",
    "name": "<string>",
    "integrationId": "<string>",
    "url": "<string>",
    "bytes": 123,
    "object": "<string>",
    "purpose": "<string>",
    "mimetype": "<string>",
    "bucket": "<string>",
    "path": "<string>",
    "status": "<string>",
    "parsedTextUrl": "<string>",
    "parsedTextBytes": "<string>",
    "organizationId": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "organization": {
      "id": "<string>",
      "name": "<string>"
    },
    "integration": {}
  }
}

Authorizations

x-api-key
string
header
required

Body

multipart/form-data

Response

200
application/json

File uploaded successfully.

The response is of type object.