POST
/
api
/
organizations
/
{organizationId}
/
deploy
/
{deployId}
Update deploy block
curl --request POST \
  --url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/deploy/{deployId} \
  --header 'Content-Type: multipart/form-data' \
  --header 'x-api-key: <api-key>' \
  --form 'name=<string>' \
  --form 'dockerContainer=<string>' \
  --form 'description=<string>' \
  --form 'cliArguments=<string>' \
  --form requestsCpu=123 \
  --form requestsMemory=123 \
  --form limitsCpu=123 \
  --form limitsMemory=123 \
  --form 'integrateUrl=<string>' \
  --form privileged=true \
  --form mountLearnBlock=true \
  --form supportsEonCompiler=true \
  --form showOptimizations=true \
  --form category=library \
  --form sourceCodeDownloadStaffOnly=true \
  --form photo=@example-file
{
  "success": true,
  "error": "<string>"
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
integer
required

Organization ID

deployId
integer
required

Deploy block ID.

Body

multipart/form-data

Response

200 - application/json

OK

The response is of type object.