Skip to main content
POST
/
api
/
data-privacy
/
deletion-request
Request account and data deletion (GDPR Right to be Forgotten)
curl --request POST \
  --url https://api.g-tateth.com/api/data-privacy/deletion-request \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "I no longer use this service"
}
'
{
  "success": true,
  "message": "Data deletion request submitted successfully. You will receive an email confirmation shortly.",
  "request": {
    "id": "64a1b2c3d4e5f6789012345a",
    "status": "pending",
    "requestedAt": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.g-tateth.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT session token authentication. Use for user-context requests. The token is returned by the login endpoint and expires after 15 minutes.

Body

application/json
reason
string

Optional reason for the deletion request

Example:

"I no longer use this service"

Response

Deletion request submitted successfully

success
boolean
Example:

true

message
string
Example:

"Data deletion request submitted successfully. You will receive an email confirmation shortly."

request
object

Summary of a submitted data deletion request