Appearance
Obtener campos únicos (FieldWithMetadata[]) de formularios mergeados con onlyAdmin
GET
/config/form/fields
Returns FieldWithMetadata[] with onlyAdmin metadata extracted from all merged forms (all configured forms) of the white label. Uses /config/form/fields (singular) to avoid route conflicts.
Authorizations
bearerAuth
JWT token de autenticación. Utilice este esquema para autenticar solicitudes con un token JWT.
TypeHTTP (bearer)
Responses
Lista de campos con metadata de onlyAdmin
application/json
JSON
{
"status": "success",
"data": {
"fields": [
{
"ID": "string",
"configurationID": "string",
"label": "Nombre Completo",
"description": "Ingrese su nombre como aparece en su documento de identidad.",
"name": "fullName",
"type": "text",
"category": 1,
"section": 1,
"sectionLabel": "Información Personal",
"sectionOrder": 1,
"order": 1,
"options": [
{
"label": "string",
"value": "string"
}
],
"validations": [
],
"onlyAdmin": true
}
]
}
}