nuri60 Her bir API servisini veri tabanında bir tabloda tuttuğunuzu düşünün ve bu tabloda parameters diye bir alan olsun, jsonb tipinde:
API Servisi 1:
{
"form_fields": [
{"name": "username", "label": "Kullanıcı Adı", "type": "string", "required": true},
{"name": "password", "label": "Şifre", "type": "string", "required": true}
]
}
API Servisi 2:
{
"form_fields": [
{"name": "client_id", "label": "Client ID", "type": "string", "required": true},
{"name": "client_secret", "label": "Client Secret", "type": "string", "required": true},
{"name": "grant_type", "label": "Grant Type", "type": "string", "required": true}
]
}
Bu veriyle frontend aynı sayfada her bir API için özel form oluşturabilir.