You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The filter is completely ignored, and it also returns users of other partners (which is rather worrying) ... please note that this is K9 behavior. Same thing on a K6 API works like a charm.
2 - The id property of the KalturaUser objects being returned have the same value of the screenName property. Thus one is unable to read the ids of a given list of users.
3 - The get action of the user service accepts a UserId, according to the documentation it's of type string so I figured ok passing the email address would get me the user. It does get me a user but not the correct one ... basically it returns always the same result regardless what you pass in as a parameter.
4 - Then I wanted to update a user via the API, the documentation says that the first parameter userId is string so I though ok the email again. But the response was Invalid user id.
Would really appreciate some support on this as it stands the user service on K9 is barely useable.
The text was updated successfully, but these errors were encountered:
So multiple issues here:
1 - Calling the list action with a KalturaUserFilter, that filters by a specific ID as follows:
$filter = new KalturaUserFilter();
$filter->idEqual = '[email protected]';
$users = $sourcePartnerClient->user->listAction($filter, null);
The filter is completely ignored, and it also returns users of other partners (which is rather worrying) ... please note that this is K9 behavior. Same thing on a K6 API works like a charm.
2 - The id property of the KalturaUser objects being returned have the same value of the screenName property. Thus one is unable to read the ids of a given list of users.
3 - The get action of the user service accepts a UserId, according to the documentation it's of type string so I figured ok passing the email address would get me the user. It does get me a user but not the correct one ... basically it returns always the same result regardless what you pass in as a parameter.
4 - Then I wanted to update a user via the API, the documentation says that the first parameter userId is string so I though ok the email again. But the response was Invalid user id.
Would really appreciate some support on this as it stands the user service on K9 is barely useable.
The text was updated successfully, but these errors were encountered: