Installer.com Docs
API ReferenceV1
POST
/api/v1/file/upload

Upload a file using multipart/form-data. The uploaded file will be processed and stored on the server. Each file will receive a unique file_id in the response, which should be used in other endpoints that require file data.

AuthorizationBearer <token>

Installer.com auth token

In: header

Request Body

multipart/form-data

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "http://localhost:8000/api/v1/file/upload" \  -F file="string"
{
  "value": "string"
}