District Level LCV Flag Bearer Elections.
  1. Add District Level LCV Flag Bearer Candidate

    [POST] /api/forms/district-level-lcv-flag-bearer/add

    Request in post request

                    {
                        "NINNumber"   :   "",
                        "FirstName"   :   "",
                        "LastName"    :   "",
                        "Phone"       :   "",
                        "Village"     :   "",
                        "Parish"      :   "",
                        "Subcounty"   :   "",
                        "Constituency":   "",
                        "District"    :   "",
                        "Vote"        :   ""
                    }
                

    Response after sending request

                {
                    "success": true,
                    "candidate_id": 12
                }
            

  2. List District Level LCV Flag Bearer Candidates

    [GET] /api/forms/district-level-lcv-flag-bearer/list

    Response after sending request

            [
                {
                    "NINNumber"   :   "",
                    "FirstName"   :   "",
                    "LastName"    :   "",
                    "Phone"       :   "",
                    "Village"     :   "",
                    "Parish"      :   "",
                    "Subcounty"   :   "",
                    "Constituency":   "",
                    "District"    :   "",
                    "Vote"        :   ""
                },
                {
                    "NINNumber"   :   "",
                    "FirstName"   :   "",
                    "LastName"    :   "",
                    "Phone"       :   "",
                    "Village"     :   "",
                    "Parish"      :   "",
                    "Subcounty"   :   "",
                    "Constituency":   "",
                    "District"    :   "",
                    "Vote"        :   ""
                }
            ]
            

  3. Update Votes District Party Structural Elections

    [POST] /api/forms/district-level-lcv-flag-bearer/update-vote

    Post data to update votes

                {
                    "CandidateID" : "1",
                    "Vote": "6"
                }
            

    Response after sending request

                {
                    "success": true,
                    "candidate_id": "1"
                }