Skip to main content

Bildirim Güncelle

Bildirim bilgilerini günceller.

Endpoint

PUT /api/v1/notifications/\{uuid\}
PATCH /api/v1/notifications/\{uuid\}

Authentication

Bu endpoint authentication gerektirir.

Header: Authorization: Bearer \{token\}

Permission

  • notifications.update - Tüm bildirimleri güncelleme
  • notifications.update.own - Sadece kendi bildirimlerini güncelleme

Request

Headers

HeaderDeğerZorunlu
AuthorizationBearer \{token\}Evet
Content-Typeapplication/jsonEvet

Path Parameters

ParametreTipZorunluAçıklama
uuidstringEvetBildirim UUID'si

Request Body

ParametreTipZorunluAçıklama
typestringHayırBildirim tipi (info, warning, error, success)
titlestringHayırBildirim başlığı
messagestringHayırBildirim mesajı
action_urlstringHayırİşlem URL'si
metadataobjectHayırEk metadata bilgileri (JSON)
is_activebooleanHayırAktif durumu

Example Request

{
"title": "Güncellenmiş Mesaj",
"message": "Mesaj içeriği güncellendi",
"is_active": true
}

Response

Success Response (200 OK)

{
"id": 1,
"uuid": "550e8400-e29b-41d4-a716-446655440000",
"title": "Güncellenmiş Mesaj",
"message": "Mesaj içeriği güncellendi",
"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/notifications/550e8400-e29b-41d4-a716-446655440000 \
-H "Authorization: Bearer \{token\}" \
-H "Content-Type: application/json" \
-d '{
"title": "Güncellenmiş Mesaj",
"message": "Mesaj içeriği güncellendi"
}'

Notes

  • .own permission'ı olan kullanıcılar sadece kendi bildirimlerini güncelleyebilir
  • PUT tüm alanları günceller, PATCH sadece gönderilen alanları günceller