White Label Admin - Update organization

White Label Admin - Update organization

post

White label admin only API to update organization properties such as name and logo.

Authorizations
Path parameters
organizationIdintegerRequired

Organization ID

innerOrganizationIdintegerRequired

Organization ID within the context of a white label

Body

Only fields set in this object will be updated.

logostringOptional

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

headerImgstringOptional

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

namestringOptional

New organization name.

experimentsstring[]Optional
readmestringOptional

Readme for the organization (in Markdown)

billablebooleanOptional
contractStartDatestring · date-timeOptional

The date in which the organization contract started. Compute time will be calculated from this date.

domainstringOptional

The domain of the organization. The organization domain is used to add new users to an organization. For example, new @edgeimpulse.com would be added to the Edge Impulse organization if this organization has edgeimpulse.com as the domain.

Example: edgeimpulse.com
Responses
200
OK
application/json
post
POST /v1/api/organizations/{organizationId}/whitelabel/organizations/{innerOrganizationId} HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 304

{
  "logo": "text",
  "headerImg": "text",
  "name": "text",
  "experiments": [
    "text"
  ],
  "readme": "text",
  "billable": true,
  "entitlementLimits": {
    "totalStorage": 1,
    "computeTimePerYear": 1,
    "gpuComputeTimePerYear": 1,
    "numberOfProjects": 1,
    "numberOfUsers": 1
  },
  "contractStartDate": "2025-07-05T05:04:09.622Z",
  "domain": "edgeimpulse.com"
}
200

OK

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

Last updated

Was this helpful?