Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request POST \ --url http://localhost:3000/api/backend/account/deletion \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "confirm": "DELETE" } '
const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: JSON.stringify({confirm: 'DELETE'}) }; fetch('http://localhost:3000/api/backend/account/deletion', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
import requests url = "http://localhost:3000/api/backend/account/deletion" payload = { "confirm": "DELETE" } headers = { "Authorization": "Bearer <token>", "Content-Type": "application/json" } response = requests.post(url, json=payload, headers=headers) print(response.text)
{}
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Must be the literal DELETE
DELETE
The response is of type object.
object