POST
/
api
/
organizations
/
{organizationId}
/
portals
/
create
Create upload portal
curl --request POST \
  --url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/portals/create \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "name": "EdgeImpulse Inc.",
  "description": "EdgeImpulse Inc. Portal description",
  "bucketId": 1,
  "bucketPath": "/path/in/bucket"
}'
{
  "success": true,
  "error": "<string>",
  "id": 123,
  "url": "<string>",
  "signedUrl": "<string>",
  "bucketBucket": "<string>"
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
integer
required

Organization ID

Body

application/json

Response

200 - application/json

OK

The response is of type object.