beta · api · 0.1.0
Retrieve one structured Comment report
GET /api/v1/community/comments/{commentId}/reports/{reportId}
Capability Domain: Community Interaction
Authentication
projectCredential (reports:read)
Scope: reports:read
Parameters and request body
-
X-Correlation-ID— header, optionalX-Correlation-ID schema { "type": "string", "format": "uuid" } -
commentId— path, requiredcommentId schema { "type": "string", "format": "uuid" } -
reportId— path, requiredreportId schema { "type": "string", "format": "uuid" } -
resource_type— query, requiredresource_type schema { "type": "string", "maxLength": 120 } -
resource_id— query, requiredresource_id schema { "type": "string", "maxLength": 255 }
Responses and errors
| Status | Description |
|---|---|
200 | Received report status without reporter identity |
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",
"additionalProperties": false,
"required": [
"id",
"comment_id",
"reason",
"status",
"decision",
"decided_at",
"created_at"
],
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"comment_id": {
"type": "string",
"format": "uuid"
},
"reason": {
"type": "string",
"enum": [
"spam",
"harassment",
"hate",
"violence",
"sexual_content"
]
},
"status": {
"type": "string",
"enum": [
"received",
"resolved"
]
},
"decision": {
"type": [
"string",
"null"
],
"enum": [
"no_action",
"restricted",
null
]
},
"decided_at": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"created_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": "53000000-0000-4000-8000-000000000001",
"comment_id": "51000000-0000-4000-8000-000000000001",
"reason": "spam",
"status": "received",
"created_at": "2026-09-07T02:00:00Z"
}
}
Idempotency
Safe read; repeated requests do not change report status.