Hi . i wanna get email adresse for a specific user by accountId and i have a 403 error
getEmailUser(accountId) {
let url = this.config.apiPath + "/user/bulk?accountId=" + accountId;
return AP.request({
url : "/rest/api/user/bulk?accountId="+accountId,
contentType: "application/json",
type: 'GET',
}).then(function (data) {
console.log(data)
return JSON.parse(data);
}).catch(function (error) {
console.log('error email user => ' + JSON.stringify(error))
}); }
i tried this url : wiki/rest/api/user/email?accountId={accountId}
and it return the same error
