POST
/
api
/
organizations
/
{organizationId}
Update organization
curl --request POST \
  --url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "logo": "<string>",
  "headerImg": "<string>",
  "showHeaderImgMask": true,
  "name": "<string>",
  "experiments": [
    "<string>"
  ],
  "readme": "<string>",
  "jobLimitM": 123
}'
{
  "success": true,
  "error": "<string>"
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
integer
required

Organization ID

Body

application/json

Only fields set in this object will be updated.

New logo URL, or set to null to remove the logo.

headerImg
string

New leader image URL, or set to null to remove the leader.

showHeaderImgMask
boolean
name
string

New organization name.

experiments
string[]
readme
string

Readme for the organization (in Markdown)

jobLimitM
integer

New job limit in seconds.

Response

200 - application/json

OK

success
boolean
required

Whether the operation succeeded

error
string

Optional error description (set if 'success' was false)