Amplitude · Schema

DsarStatusResponse

A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

Properties

Name Type Description
request_id string The unique identifier for the DSAR request.
status string The processing status of the request.
download_url string The URL to download the requested data. Only present when status is complete.
View JSON Schema on GitHub

JSON Schema

amplitude-dsarstatusresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DsarStatusResponse",
  "title": "DsarStatusResponse",
  "type": "object",
  "properties": {
    "request_id": {
      "type": "string",
      "description": "The unique identifier for the DSAR request."
    },
    "status": {
      "type": "string",
      "description": "The processing status of the request.",
      "enum": [
        "pending",
        "processing",
        "complete",
        "failed"
      ]
    },
    "download_url": {
      "type": "string",
      "format": "uri",
      "description": "The URL to download the requested data. Only present when status is complete."
    }
  }
}