Links

Get User Password State

Tells whether the user needs to set its password.
get
https://studio.edgeimpulse.com/v1
/api-user-need-to-set-password/{usernameOrEmail}
Get user password state

Tells whether the user needs to set its password.

Parameters
Path
usernameOrEmail*
string
Username or email
Responses
200: OK
OK
cURL
Python
Node.js
curl --request GET \
--url https://studio.edgeimpulse.com/v1/api-user-need-to-set-password/{usernameOrEmail}
import http.client
conn = http.client.HTTPSConnection("studio.edgeimpulse.com")
conn.request("GET", "/v1/api-user-need-to-set-password/{usernameOrEmail}")
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
const request = require('request');
const options = {
method: 'GET',
url: 'https://studio.edgeimpulse.com/v1/api-user-need-to-set-password/{usernameOrEmail}'
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});