action fec_get_candidate_candidate_id_committees { label: "get_candidate_candidate_id_committees" description: "\nThis endpoint is useful for finding detailed information about a particular committee or\nfiler. Use the `committee_id` to find the most recent information about the committee.\n" provider: fec method: GET path: "/candidate/{candidate_id}/committees/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } candidate_id: { type: "string" } committee_type: { type: "array" items: { type: "string" enum: ["", "C", "D", "E", "H", "I", "N", "O", "P", "Q", "S", "U", "V", "W", "X", "Y", "Z"] } } cycle: { type: "array" items: { type: "integer" format: "int32" } } designation: { type: "array" items: { type: "string" enum: ["", "A", "J", "P", "U", "B", "D"] } } filing_frequency: { type: "array" items: { type: "string" enum: ["", "A", "M", "N", "Q", "T", "W", "-A", "-T"] } } organization_type: { type: "array" items: { type: "string" enum: ["", "C", "L", "M", "T", "V", "W"] } } page: { type: "integer" format: "int32" } per_page: { type: "integer" format: "int32" } sort: { type: "string" } sort_hide_null: { type: "boolean" } sort_null_only: { type: "boolean" } sort_nulls_last: { type: "boolean" } year: { type: "array" items: { type: "integer" format: "int32" } } } required: ["api_key", "candidate_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }