Create pre-signed S3 upload link

Create pre-signed S3 upload link

post

Creates a signed link to securely upload data to s3 bucket directly from the client.

Authorizations
Path parameters
organizationIdintegerRequired

Organization ID

datasetstringRequired

Dataset name

Body
fileNamestringRequired

file name

fileSizeintegerRequired

file size in bytes

fileHashstringRequired

hash to identify file changes

Responses
200
OK
application/json
Responseall of
post
POST /v1/api/organizations/{organizationId}/dataset/{dataset}/upload-link HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 50

{
  "fileName": "text",
  "fileSize": 1,
  "fileHash": "text"
}
200

OK

{
  "success": true,
  "error": "text",
  "url": "text",
  "ETag": "text"
}

Last updated

Was this helpful?