District Level District Councillors Elections.
  1. Add District Councillors Candidate

    [POST] /api/forms/district-level-district-councillors/add

    Request in post request

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

    Response after sending request

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

  2. List District Councillors Candidates

    [GET] /api/forms/district-level-district-councillors/list

    Response after sending request

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

  3. Update District Councillors Elections

    [POST] /api/forms/district-level-district-councillors/update-vote

    Post data to update votes

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

    Response after sending request

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