Retrieve Members of a Portal
get
/v1/portal/portals/{portalId}/members
Returns details of members of a portal.
Request
Path Parameters
-
portalId: string
The short Id of a portal.
Query Parameters
Response
Supported Media Types
- application/json
403 Response
Invalid utoken supplied
Examples
Use this endpoint to retrieve details about the members of a portal.
To retrieve information about portal members, submit a GET request on the REST resource. In the request, you must specify the portal ID of the portal for which you want to retrieve member details. You can use the query parameters to filter your results. Use the following format to submit a GET request using cURLcurl -i -X GET
http://hostname:port/rest/api/v1/portal/portals/{portalId}/members?utoken=utoken
-H 'Content-Type: application/json'
where
-
hostname:port
is the name of the host and the IP port where Oracle WebCenter Portal is running. For example,example.com:8888
. -
utoken
is the API token for accessing the portal APIs. For example,utoken=utoken=abcdIC05zgjZoqCF8ShWL42AhTVvq-fc8uFshnw%2A%2A
. For more information, see Authentication. -
{portalId}
is theshort id
of the portal. To retrieve the short id of a portal, see Retrieve Portals.
HTTP Status Code
HTTP_STATUS = 200
Example of Response Body
In this example, you can view the contents of the response body in JSON format, including the shortId
for the member, In this example, shortId: IZU
is highlighted.
<?xml version="1.0" encoding="UTF-8"?>
<members resourceType="urn:oracle:webcenter:portal:members">
<itemsPerPage>10</itemsPerPage>
<startIndex>0</startIndex>
<items>
<item resourceType="urn:oracle:webcenter:portal:member" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="urn:oracle:webcenter:portal:member">
<id>1002c204-f535-4f49-8f1f-4de987020840</id>
<shortId>IZU</shortId>
<name>E9C3ADF670F9440E50F81C2$Moderator</name>
<creator>weblogic</creator>
<created>2018-08-29T07:39:29.519Z</created>
<modifier>weblogic</modifier>
<modified>2018-08-29T07:39:30.445Z</modified>
<namespace>member</namespace>
<currentVersionId>45d848a8-18c1-4111-910a-157daa5737ee</currentVersionId>
<isGroup>false</isGroup>
<role>Moderator</role>
<permissionAction>manage,update,view,delete,manageMembership</permissionAction>
<userGUID>E9C3ADF672E040E58122C2</userGUID>
<userId>weblogic</userId>
<spaceId>SavPortal</spaceId>
<groupSpaceType>true</groupSpaceType>
</item>
</items>
</members>