İçerik Güncelle
İçerik bilgilerini günceller.
Endpoint
PUT /api/v1/contents/\{uuid\}
PATCH /api/v1/contents/\{uuid\}
Authentication
Bu endpoint authentication gerektirir.
Header: Authorization: Bearer \{token\}
Permission
content.update- Tüm içerikleri güncellemecontent.update.own- Sadece kendi içeriklerini güncelleme
Request
Headers
| Header | Değer | Zorunlu |
|---|---|---|
Authorization | Bearer \{token\} | Evet |
Content-Type | application/json | Evet |
Path Parameters
| Parametre | Tip | Zorunlu | Açıklama |
|---|---|---|---|
uuid | string | Evet | İçerik UUID'si |
Request Body
| Parametre | Tip | Zorunlu | Açıklama |
|---|---|---|---|
title | string | Hayır | İçerik başlığı |
slug | string | Hayır | İçerik slug'ı |
content | string | Hayır | İçerik metni |
excerpt | string | Hayır | İçerik özeti |
status | string | Hayır | İçerik durumu (draft, published, archived) |
type | string | Hayır | İçerik tipi |
is_active | boolean | Hayır | Aktif durumu |
published_at | datetime | Hayır | Yayınlanma tarihi |
Example Request
{
"title": "Örnek İçerik Updated",
"content": "Güncellenmiş içerik metni...",
"status": "published"
}
Response
Success Response (200 OK)
{
"id": 1,
"uuid": "550e8400-e29b-41d4-a716-446655440000",
"title": "Örnek İçerik Updated",
"slug": "ornek-icerik",
"content": "Güncellenmiş içerik metni...",
"status": "published",
"is_active": true,
"updated_at": "2025-11-20T12:00:00.000000Z"
}
Error Responses
404 Not Found
{
"message": "Not Found"
}
403 Forbidden
{
"message": "Forbidden"
}
Code Examples
cURL
curl -X PATCH https://api.example.com/api/v1/contents/550e8400-e29b-41d4-a716-446655440000 \
-H "Authorization: Bearer \{token\}" \
-H "Content-Type: application/json" \
-d '{
"title": "Örnek İçerik Updated",
"content": "Güncellenmiş içerik metni...",
"status": "published"
}'
Notes
.ownpermission'ı olan kullanıcılar sadece kendi içeriklerini güncelleyebilirPUTtüm alanları günceller,PATCHsadece gönderilen alanları günceller
Related Endpoints
- İçerik Detayı - İçerik detayını getir
- İçerik Sil - İçerik sil