action apacta_get_forms_undelete_form_id { label: "Undelete form and related entities to it" provider: apacta method: GET path: "/forms/undelete/{form_id}" encoding: json input: { type: "object" properties: { form_id: { type: "string" } } required: ["form_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "string" } } success: { type: "boolean" } } } }