action apacta_get_form_fields_form_field_id { label: "Get details about single `FormField`" provider: apacta method: GET path: "/form_fields/{form_field_id}" encoding: json input: { type: "object" properties: { form_field_id: { type: "string" } } required: ["form_field_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { comment: { type: "string" } content_value: { type: "string" } created: { type: "string" format: "dateTime" } created_by_id: { type: "string" format: "uuid" description: "Read-only" } deleted: { type: "string" format: "dateTime" description: "Only present if it's a deleted object" } file_id: { type: "string" format: "uuid" } form_field_type_id: { type: "string" format: "uuid" } form_id: { type: "string" format: "uuid" } form_template_field_id: { type: "string" format: "uuid" } id: { type: "string" format: "uuid" description: "Read-only" } modified: { type: "string" format: "dateTime" } placement: { type: "integer" format: "int32" } } } success: { type: "boolean" } } } }