curl --request POST \
--url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/whitelabel/users/{userId} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"email": "quijote@lamancha.es",
"name": "Don Quijote de la Mancha",
"activated": true,
"suspended": false,
"suspensionReason": "Spamming the forum",
"jobTitle": "Knight",
"experiments": [
"<string>"
]
}'
{
"success": true,
"error": "<string>"
}
White label admin only API to update user properties.
curl --request POST \
--url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/whitelabel/users/{userId} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"email": "quijote@lamancha.es",
"name": "Don Quijote de la Mancha",
"activated": true,
"suspended": false,
"suspensionReason": "Spamming the forum",
"jobTitle": "Knight",
"experiments": [
"<string>"
]
}'
{
"success": true,
"error": "<string>"
}
Only fields set in this object will be updated.
OK
The response is of type object
.