I’m not sure if that’s what I’m referring too, but the information is very helpful, Thank you.
I’ll rephrase, please let me know if the answer is the same.
we get information on the frontend with the resgate client, like:
client.get('connection.search?key=connection_entity_ids&value=123&key=owner_entity_id&value=567')
client.call('group.identity', 'create', {name: "some group name"})
client.authenticate("auth.totp", "validate", { code: "123456" }).then(resp)
client.authenticate('auth.user', 'login', {
username: formState.values.username,
password: formState.values.password,
})
.then((resp))
the .get uses GET requests and .call uses POST but I’m not sure how to access .authenticate using restful requests. I have multiple methods, calling different services using .authenticate I don’t know how to access them using Rest.
e.g. when I try to send a POST request to /api/auth/user/login with the username and password I get a service not found error