Interface DeleteRequest

A Delete request is initiated when a Data Subject selects a right that allows for deleting of personal data. To forward a Data Subject Request, Ketch sends a message using the POST method to the configured endpoint. The format of the message and expected responses depend on the type of right invoked by the Data Subject.

Hierarchy

  • DeleteRequest

Properties

apiVersion: "dsr/v1"
kind: Kind
metadata: Metadata
request: {
    callbacks?: Callback[];
    context?: {
        [key: string]: any;
    };
    controller?: string;
    dueTimestamp: number;
    environment: string;
    identities: Identity[];
    jurisdiction: string;
    property: string;
    regulation: string;
    subject: DataSubject;
    submittedTimestamp: number;
}

Type declaration

  • Optional callbacks?: Callback[]
  • Optional context?: {
        [key: string]: any;
    }
    • [key: string]: any
  • Optional controller?: string
  • dueTimestamp: number
  • environment: string
  • identities: Identity[]
  • jurisdiction: string
  • property: string
  • regulation: string
  • subject: DataSubject
  • submittedTimestamp: number

Generated using TypeDoc