deleting a user with success (200) via API client but they are not removed from
-
the Home/users listing. What am I missing? Do i need to type the word DELETE somewhere?
Here is the api call:
$result = $_SESSION['client']->deleteRegistration($userid,$_SESSION['applicationID']);
-
Registrations are different things than users - they associate users and applications. You can find more info on that in the documentation.
deleteUser
method should be used to delete a user. -
Works perfectly now. TY!
-
This post is deleted!