Ingress API Docs for DSRs

Adding new DSRs to your Kertos Instance

For creating a DSR you have to describe both the data subject and the requested actions. Required fields are annotated with *.

Request samples

POST https://docs.kertos.io/api/v1/external/data_subject_requests/

Simple request

{
  "requested_actions": [
    "access",
    "delete"
  ],
  "received_at": "2020-01-01T00:00:00Z",
  "skip_verification_email": false,
  "channel": "phone",
  "data_subject": {
    "email": "john.doe@kertos.io",
    "first_name": "John",
    "last_name": "Doe",
    "subject_type": "customer"
  }
}

Multi Identifier Request

{
  "requested_actions": [
    "access",
    "delete"
  ],
  "received_at": "2020-01-01T00:00:00Z",
  "skip_verification_email": false,
  "channel": "phone",
  "data_subject": {
    "first_name": "John",
    "last_name": "Doe",
    "subject_type": "customer",
    "identifiers": [
      {
        "identifier_type": "Email",
        "identifier": "john.doe@kertos.io",
        "is_verified": true,
        "is_used_for_communication": true
      },
      {
        "identifier_type": "PhoneNumber",
        "identifier": "+491626926678",
        "is_verified": true,
        "is_used_for_communication": false
      }
    ]
  }
}