I am trying to communicate with a Mikrotik RouterOS to create a new user as follows
$usermanagerQuery = new Query(
"/tool/user-manager/user/add",
[
'=customer=admin',
'=username=sampleuser',
'=password=samplepassword',
'=shared-users=1',
'=caller-id-bind-on-first-use=yes'
]
);
$userCreationResponse = $client->query($usermanagerQuery)->read(false);
Now I got a response of
Array ( [0] => !done [1] => =ret=*A85 )
What next do I need to do with the response above?
Thanks in advance