Skip to content

List Documents

GET
/admin/complaints/{id}/documents
curl --request GET \
--url 'http://localhost:9000/admin/complaints/example/documents?limit=50&offset=0'
id
required
string
limit
integer
default: 50
offset
integer
0
order
string
fields
string

OK

Media type application/json
object
documents
Array<object>
object
id
string
complaint_id
string
filename
string
mime_type
string
size_bytes
string
uploaded_by
string
created_at
string format: date-time
count
integer
limit
integer
offset
integer
Example generated
{
"documents": [
{
"id": "example",
"complaint_id": "example",
"filename": "example",
"mime_type": "example",
"size_bytes": "example",
"uploaded_by": "example",
"created_at": "2026-04-15T12:00:00Z"
}
],
"count": 1,
"limit": 1,
"offset": 1
}