action fec_get_audit_case { label: "get_audit_case" description: "\nThis endpoint contains Final Audit Reports approved by the Commission since inception.\nThe search can be based on information about the audited committee (Name, FEC ID Number, Type, \nElection Cycle) or the issues covered in the report.\n" provider: fec method: GET path: "/audit-case/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } audit_case_id: { type: "array" items: { type: "string" } } audit_id: { type: "array" items: { type: "integer" format: "int32" } } candidate_id: { type: "array" items: { type: "string" } } committee_designation: { type: "string" } committee_id: { type: "array" items: { type: "string" } } committee_type: { type: "array" items: { type: "string" } } cycle: { type: "array" items: { type: "integer" format: "int32" } } max_election_cycle: { type: "integer" format: "int32" } min_election_cycle: { type: "integer" format: "int32" } page: { type: "integer" format: "int32" } per_page: { type: "integer" format: "int32" } primary_category_id: { type: "string" } q: { type: "array" items: { type: "string" } } qq: { type: "array" items: { type: "string" } } sort: { type: "array" items: { type: "string" } } sort_hide_null: { type: "boolean" } sort_null_only: { type: "boolean" } sort_nulls_last: { type: "boolean" } sub_category_id: { type: "string" } } required: ["api_key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }