Source code for imednet.endpoints.forms
"""Endpoint for managing forms (eCRFs) in a study."""
from imednet.core.endpoint.mixins import EdcMetadataListGetEndpoint
from imednet.models.forms import Form
[docs]class FormsEndpoint(EdcMetadataListGetEndpoint[Form]):
"""
API endpoint for interacting with forms (eCRFs) in an iMedNet study.
Provides methods to list and retrieve individual forms.
"""
PATH = "forms"
MODEL = Form
_id_param = "formId"
_enable_cache = True