Conversations: anonymize

Anonymizes the chat metadata so as to remove any identifying guest information. The guest id, guest IP address, and chat transcript are all deleted when a chat is anonymized.

Authentication

LibraryH3lp supports cookie-based authentication. To learn more, you can read the details on authentication.

HTTP and HTTPS

Requests are served over HTTPS. To ensure data privacy, unencrypted HTTP is not supported.

URI

/2011-12-03/conversations/anonymize-conversations

HTTP GET

Not supported.

HTTP POST

Anonymizes the specified conversations.

Required Parameters

You must POST using the following parameters:

Parameter Description
ids A comma-separated list of conversation ids to anonymize.

Response

Returns a JSON response with the following properties:

Property Description
success Boolean indicating if the request was successful.
message Optional. If success is null, message is a string describing the reason for the failed request.

Example

POST /2011-12-03/conversations/anonymize-conversations
ids=1,3,4

{
  "success": true
}

HTTP PUT

Not supported.

HTTP DELETE

Not supported.