Files
nextgo/mpc/docs/admin-user-api.md
Beyhan Oğur 9eb7aea821 first commit
2026-04-26 22:15:25 +03:00

28 lines
412 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Admin User Management API
Bu doküman admin panel için kullanıcı yönetimi endpointlerini açıklar.
## Base Path
`/admin/users`
## Endpointler
### 1. Kullanıcı Listesi
`GET /admin/users`
#### Query Params
- `page` (optional)
- `limit` (optional)
- `search` (optional)
- `status` (optional)
#### Response
```json
{
"data": [],
"pagination": {
"page": 1,
"limit": 10,
"total": 0
}
}