Skip to main content
POST
/
api
/
data-privacy
/
access-request
Request access to your personal data (GDPR Right of Access)
curl --request POST \
  --url https://api.g-tateth.com/api/data-privacy/access-request \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "I would like to correct my email address on file",
  "details": "My current email should be corrected to jane@example.com"
}
'
{
  "success": true,
  "message": "Access request submitted successfully. You will receive your data via email shortly.",
  "request": {
    "id": "64a1b2c3d4e5f6789012345a",
    "type": "rectification",
    "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

Reason for the request

Example:

"I would like to correct my email address on file"

details
string

Additional details to support the request

Example:

"My current email should be corrected to jane@example.com"

Response

Access request submitted successfully

success
boolean
Example:

true

message
string
Example:

"Access request submitted successfully. You will receive your data via email shortly."

request
object

Summary of a submitted GDPR data rights request