action fec_get_candidate_candidate_id_totals { label: "get_candidate_candidate_id_totals" description: "\nThis endpoint provides information about a committee's Form 3, Form 3X, or Form 3P financial reports,\nwhich are aggregated by two-year period. We refer to two-year periods as a `cycle`.\n\nThe cycle is named after the even-numbered year and includes the year before it. To obtain\ntotals from 2013 and 2014, you would use 2014. In odd-numbered years, the current cycle\nis the next year — for example, in 2015, the current cycle is 2016.\n\nFor presidential and Senate candidates, multiple two-year cycles exist between elections.\n\n" provider: fec method: GET path: "/candidate/{candidate_id}/totals/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } candidate_id: { type: "string" } cycle: { type: "array" items: { type: "integer" format: "int32" } } election_full: { type: "boolean" } 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" } } required: ["api_key", "candidate_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }