action apacta_get_companies_company_id_form_templates { label: "Get a list of company form templates" provider: apacta method: GET path: "/companies/{company_id}/form_templates/" encoding: json input: { type: "object" properties: { company_id: { type: "string" } form_template_id: { type: "string" } } required: ["company_id", "form_template_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" } } pagination: { type: "object" properties: { count: { type: "integer" } current_page: { type: "string" } has_next_page: { type: "boolean" } has_prev_page: { type: "boolean" } limit: { type: "integer" } page_count: { type: "string" } } } success: { type: "boolean" } } } }