Store a working file.

POST /data/working-files/{working_file_id}/file

Path parameters

  • working_file_id string(uuid) Required
multipart/form-data

Body Required

  • file string(binary) Required

    Working file to upload

Responses

  • 201 application/json

    Working file stored

    Hide response attribute Show response attribute object
    • success boolean
  • 400

    Invalid file or parameters

  • 404

    Working file not found

POST /data/working-files/{working_file_id}/file
curl \
 --request POST 'http://api.example.com/data/working-files/a24a6ea4-ce75-4665-a070-57453082c25/file' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: multipart/form-data" \
 --form "file=@file"
Response examples (201)
{
  "success": true
}