Hello,
I need to invite many users to use Event Portal, and looking to automate it via REST API.
Notice that this specific operation does not exists exposed at Platform REST API, but found that this is the request made by Event Portal:
[HTTP POST] https://prod-aws-eu-api.solacecloud.eu/api/v0/users
body example:
{
“email”: “”,
“roles”: [
“mission-control-viewer”,
“event-portal-user”
]
}
I tried to invoke it with the same access token used for api.solacecloud.eu, but it returns an authentication error, as I suspected, because the host is not the same…
There’s any way to use this REST API or to automate user invitations to event portal?
Thanks!