Skip to main content
POST
/
networks
/
uploads
/
temp
Upload Temp File
curl --request POST \
  --url https://api.eflow.team/v1/networks/uploads/temp \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "mime_type": "application/json",
  "content_base64": "YmFzZTY0"
}
'
{
  "urls": [
    {
      "url": "<string>",
      "name": "<string>"
    }
  ]
}
Upload a temporary file (CSV, image, etc.) for use with other endpoints such as conversion imports or creative uploads. The file content must be Base64 encoded and sent as a JSON payload. Returns temporary URLs that can be referenced in subsequent API calls. Note: uploaded files are temporary and will be destroyed after one use.

Authorizations

X-Eflow-Api-Key
string
header
required

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

Query Parameters

unzip
boolean

Set to true to decompress a compressed file after upload.

Body

application/json
mime_type
string
required

MIME type of the file (e.g. application/json, text/csv, image/png).

content_base64
string
required

File content encoded in Base64.

Response

200 - application/json
urls
object[]

Array of temporary file URLs.