User Management API

0
Greetings, Has the URL for the User Management API changed? I’ve got a HTTP 404 error on the following request: https://platform.mendix.com/api/1/users/by-email/(my-url-encoded-email)?Mendix-Username=(my-email)&Mendix-ApiKey=(my-api-key) I don’t think that there is an authentication or authorization error as this is HTTP 404. However, once I have the correct endpoint, the next step would be to pass the authorization. I produced an api-key for myself, but as I am not a licensed user, I am assuming that I cannot possibly be assigned the roles of Company-Admin or Member-Admin, required to invoke the User Management API, is this correct? 
asked
2 answers
0

Your URL is wrong. The URL should be

https://platform.mendix.com/api/1/users/by-email/<emailAddress>

And in your custom headers you should place this:

Host: platform.mendix.com
Content-Type: application/json
Mendix-Username:janedoe@example.com
Mendix-ApiKey:87a8a34d-5ee7-43ba-81f0-7b1b17d5ecd7

Regards,

Ronald

 

answered
0

 I am currently also trying to use the User management APIs, but unfortunately without any success by now. 
Even the simple once as the following two…. I am basically following the documentations step by step but i still receive HTTP 404 Not Found

Anyone any clue on that? 

https://usermanagement.mendix.com/legacy-api/1/groups
https://usermanagement.mendix.com/legacy-api/1/users
answered