curl --request POST \
--url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/whitelabel/organizations/{innerOrganizationId} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"logo": "<string>",
"headerImg": "<string>",
"name": "<string>",
"experiments": [
"<string>"
],
"readme": "<string>",
"billable": true,
"entitlementLimits": {
"totalStorage": 123,
"computeTimePerYear": 123,
"gpuComputeTimePerYear": 123,
"numberOfProjects": 123,
"numberOfUsers": 123
},
"contractStartDate": "2023-11-07T05:31:56Z",
"domain": "edgeimpulse.com"
}'
{
"success": true,
"error": "<string>"
}
White label admin only API to update organization properties such as name and logo.
curl --request POST \
--url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/whitelabel/organizations/{innerOrganizationId} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"logo": "<string>",
"headerImg": "<string>",
"name": "<string>",
"experiments": [
"<string>"
],
"readme": "<string>",
"billable": true,
"entitlementLimits": {
"totalStorage": 123,
"computeTimePerYear": 123,
"gpuComputeTimePerYear": 123,
"numberOfProjects": 123,
"numberOfUsers": 123
},
"contractStartDate": "2023-11-07T05:31:56Z",
"domain": "edgeimpulse.com"
}'
{
"success": true,
"error": "<string>"
}
Organization ID
Organization ID within the context of a white label
Only fields set in this object will be updated.
OK
The response is of type object
.