Request HR block license

Request HR block license

Request a license required for the deployment of an impulse containing the Edge Impulse HR block.

POSThttps://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/request-hr-block-license
Path parameters
organizationId*integer

Organization ID

Response

OK

Body
success*boolean

Whether the operation succeeded

errorstring

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

Request
const response = await fetch('https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/request-hr-block-license', {
    method: 'POST',
    headers: {},
});
const data = await response.json();
Response
{
  "success": false,
  "error": "text"
}

Last updated