Başvuru Detayı
UUID ile başvuru detayını getirir.
Endpoint
GET /api/v1/applications/\{uuid\}
Authentication
Bu endpoint authentication gerektirir.
Header: Authorization: Bearer \{token\}
Permission
applications.view- Tüm başvuruları görüntülemeapplications.view.own- Sadece kendi başvurularını görüntüleme
Request
Headers
| Header | Değer | Zorunlu |
|---|---|---|
Authorization | Bearer \{token\} | Evet |
Path Parameters
| Parametre | Tip | Zorunlu | Açıklama |
|---|---|---|---|
uuid | string | Evet | Başvuru UUID'si |
Response
Success Response (200 OK)
{
"id": 1,
"uuid": "550e8400-e29b-41d4-a716-446655440001",
"customer_id": 1,
"subject_code": "CERT001",
"title": "Siber Güvenlik Sertifikası",
"description": "ISO 27001 sertifikasyon başvurusu",
"status": "pending",
"type": "certification",
"is_active": true,
"customer": {
"id": 1,
"uuid": "550e8400-e29b-41d4-a716-446655440000",
"company_name": "Örnek Şirket",
"user": {
"id": 1,
"email": "user@example.com"
}
},
"subjects": [],
"created_at": "2025-11-20T12:00:00.000000Z",
"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 GET https://api.example.com/api/v1/applications/550e8400-e29b-41d4-a716-446655440001 \
-H "Authorization: Bearer \{token\}"
Notes
- Sadece aktif başvurular görüntülenebilir
- Silinmiş veya pasif başvurular için 404 döner
- Başvuru müşteri ve konu bilgileri ile birlikte döner
Related Endpoints
- Başvuru Listesi - Tüm başvuruları listele
- Başvuru Güncelle - Başvuru bilgilerini güncelle