action appcenter_data_subject_right_delete_status_request { label: "DataSubjectRight_DeleteStatusRequest" provider: appcenter method: GET path: "/v0.1/user/dsr/delete/{token}" encoding: json input: { type: "object" properties: { email: { type: "string" } token: { type: "string" format: "uuid" } } required: ["email", "token"] additionalProperties: false } output: { type: "object" required: ["message", "status"] properties: { message: { type: "string" description: "explanation message of the status" } sasUrl: { type: "string" description: "Azure Storage shared access signature (SAS) URL for exported user data." } sasUrlExpired: { type: "boolean" description: "Whether Azure Storage shared access signature (SAS) URL has expired or not." } status: { type: "string" description: "Status of data subject right request" enum: ["None", "Created", "Queued", "InProgress", "Completed", "Failed"] } } } }