Delete a Member
delete
/v1/portal/members/{memberId}
Deletes a member of a portal.
Request
Supported Media Types
- application/json
Path Parameters
-
memberId: string
The short id of the member.
Response
Supported Media Types
- application/json
204 Response
Portal member successfully deleted.
404 Response
ID for the portal member is invalid
Examples
Use this endpoint to delete a member of a portal. To delete a member, submit a DELETE request on the REST resource. In the request, you must specify the member ID.
Use the following format to submit a DELETE request using cURL:
curl -i -X DELETE
http://hostname:port/rest/api/v1/portal/members/{memberId}?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. -
{memberId}
is theshort id
of the member. To retrieve the short id of a member, see Retrieve Members of a Portal.
HTTP Status Code
HTTP_STATUS = 204 No Content