Delete a Member

delete

/v1/portal/members/{memberId}

Deletes a member of a portal.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

204 Response

Portal member successfully deleted.

404 Response

ID for the portal member is invalid
Back to Top

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 the short 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
Back to Top