cURL
curl --request PATCH \ --url https://api.example.com/user/my/privacy \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "save_conversation_history": true, "allow_data_collection": true, "allow_personalized_ai": true } '
{ "user_id": 123, "save_conversation_history": true, "allow_data_collection": true, "allow_personalized_ai": true, "updated_at": "2023-11-07T05:31:56Z" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response