Subcounty Level SIG Councillors.
  1. Add SIG Councillors

    [POST] /api/forms/subcounty-level-sig-councillors/add

    Request in post request

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

    Response after sending request

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

  2. List SIG Councillor Candidates

    [GET] /api/forms/subcounty-level-sig-councillors/list

    Response after sending request

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

  3. Update Votes SIG Councillors

    [POST] /api/forms/subcounty-level-sig-councillors/update-vote

    Post data to update votes

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

    Response after sending request

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