stable · api · 0.1.0
Get the authenticated account's Privacy Request
GET /api/v1/privacy-requests/{privacyRequestId}
Capability Domain: Security Audit Privacy
Authentication
platformSession
Scope: None
Parameters and request body
-
X-Correlation-ID— header, optionalX-Correlation-ID schema { "type": "string", "format": "uuid" } -
privacyRequestId— path, requiredprivacyRequestId schema { "type": "string", "format": "uuid" }
Responses and errors
| Status | Description |
|---|---|
200 | Current Privacy Request lifecycle state |
401 | Invalid or revoked Project Credential |
403 | Project Credential lacks the required scope |
422 | Request violates the public contract |
200 schema
{
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"type": "object",
"required": [
"id",
"platform_account_id",
"type",
"status",
"acknowledgement_due_at",
"response_due_at",
"progress_summary",
"progress_at",
"extended_response_due_at",
"closed_unverified_at",
"fallback_contact",
"legal_holds",
"required_retention"
],
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"platform_account_id": {
"type": "string",
"format": "uuid"
},
"type": {
"type": "string",
"enum": [
"access",
"export",
"correction",
"deletion",
"stop_processing"
]
},
"status": {
"type": "string",
"enum": [
"pending_verification",
"verified",
"in_progress",
"completed",
"closed_unverified"
]
},
"acknowledgement_due_at": {
"type": "string",
"format": "date-time"
},
"response_due_at": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"progress_summary": {
"type": [
"string",
"null"
]
},
"progress_at": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"extended_response_due_at": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"closed_unverified_at": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"fallback_contact": {
"type": "string",
"format": "email"
},
"legal_holds": {
"type": "array",
"items": {
"type": "object",
"required": [
"purpose",
"reason",
"expires_at"
],
"properties": {
"purpose": {
"type": "string"
},
"reason": {
"type": "string"
},
"expires_at": {
"type": "string",
"format": "date-time"
}
}
}
},
"required_retention": {
"type": "array",
"items": {
"type": "object",
"required": [
"project_client_id",
"reason",
"until"
],
"properties": {
"project_client_id": {
"type": "string",
"format": "uuid"
},
"reason": {
"type": "string"
},
"until": {
"type": "string",
"format": "date-time"
}
}
}
},
"account_deletion": {
"type": "object",
"required": [
"id",
"status",
"deadline_at"
],
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"status": {
"type": "string",
"enum": [
"pending",
"completed"
]
},
"deadline_at": {
"type": "string",
"format": "date-time"
}
}
}
}
}
}
}
401 schema
{
"type": "object",
"required": [
"error"
],
"properties": {
"error": {
"type": "object",
"required": [
"code",
"message",
"retryable",
"correlation_id",
"details"
],
"properties": {
"code": {
"type": "string"
},
"message": {
"type": "string"
},
"retryable": {
"type": "boolean"
},
"correlation_id": {
"type": "string",
"format": "uuid"
},
"details": {
"type": "object"
}
}
}
}
}
403 schema
{
"type": "object",
"required": [
"error"
],
"properties": {
"error": {
"type": "object",
"required": [
"code",
"message",
"retryable",
"correlation_id",
"details"
],
"properties": {
"code": {
"type": "string"
},
"message": {
"type": "string"
},
"retryable": {
"type": "boolean"
},
"correlation_id": {
"type": "string",
"format": "uuid"
},
"details": {
"type": "object"
}
}
}
}
}
422 schema
{
"type": "object",
"required": [
"error"
],
"properties": {
"error": {
"type": "object",
"required": [
"code",
"message",
"retryable",
"correlation_id",
"details"
],
"properties": {
"code": {
"type": "string"
},
"message": {
"type": "string"
},
"retryable": {
"type": "boolean"
},
"correlation_id": {
"type": "string",
"format": "uuid"
},
"details": {
"type": "object"
}
}
}
}
}
200 example
{
"data": {
"id": "8b000000-0000-4000-8000-000000000001",
"platform_account_id": "30000000-0000-4000-8000-000000000003",
"type": "export",
"status": "in_progress",
"acknowledgement_due_at": "2026-08-08T01:00:00Z",
"response_due_at": "2026-08-31T01:00:00Z",
"progress_summary": "Preparing export",
"progress_at": "2026-08-02T01:00:00Z",
"extended_response_due_at": null,
"closed_unverified_at": null,
"fallback_contact": "legal@otus.tw",
"legal_holds": [],
"required_retention": []
}
}
Idempotency
Safe account-scoped read; repeated requests do not change the Privacy Request.