Get white label domain

Get white label domain

Get a white label domain given its unique identifier.

GEThttps://studio.edgeimpulse.com/v1/api/whitelabel/{whitelabelIdentifier}/domain
Path parameters
whitelabelIdentifier*integer

Whitelabel ID

Response

OK

Body
success*boolean

Whether the operation succeeded

errorstring

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

domain*string
logostring
Request
const response = await fetch('https://studio.edgeimpulse.com/v1/api/whitelabel/{whitelabelIdentifier}/domain', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "success": false,
  "error": "text",
  "domain": "text",
  "logo": "text"
}

Last updated