Skip to main content
POST
/
networks
/
upload
Upload Temp File
curl --request POST \
  --url https://api.eflow.team/v1/networks/upload \
  --header 'Content-Type: multipart/form-data' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --form file='@example-file'
{
  "url": "<string>",
  "filename": "<string>",
  "size": 123
}

Authorizations

X-Eflow-Api-Key
string
header
required

The Everflow API key generated from the Control Center > Security.

Body

multipart/form-data
file
file

The file to upload.

Response

200 - application/json

OK

url
string

Temporary URL for the uploaded file.

filename
string

Original filename.

size
integer

File size in bytes.