// baseurl of server @baseurl = http://localhost:15869/api/financers //@baseurl = http://119.12.166.178:4700 ### this line will get the variable login from login request, no need to copy/paste token anymore @token = {{login.response.body.$.token}} ### GET TABLELIST FOR FINANCER INFORMATION GET http://localhost:15869/api/financers/ ### STORE FINANCER INFORMATION POST http://localhost:15869/api/financers/store Content-Type: application/json { "customer_id": 1000, "first_name": "JOSEPH", "middle_name": "", "last_name": "ESTAYO", "birth_date": "04/10/1995", "birth_place": "BULUBUNDUKIN NG JUPITER", "nationality": "JUPITERIAN", "gender": "male", "height": "195", "weight": "195", "civil_status": "SINGLE", "mobile_number": "09091234567", "land_line": "", "office_number": "", "email_address": "sample@gmail.com", "alternative_email_address": "sample2@gmail.com", "facebook_messenger": "", "sms_viber": "", "home_address_type": "", "home_full_address": "asdasda asdqwe asde", "home_no_street": "asdqw asd qwe", "home_subdivision": "asdasd", "home_region": "region 1", "home_province": "alow", "home_city": "agoo", "home_barangay": "", "home_zip_code": "4500", "office_address_type": "", "office_name": "sample office name", "office_building": "sdaksdkjh", "office_full_address": "asdlkadlalk laskdjasldk", "office_no_street": "alsdkjwe", "office_region": "region 1", "office_province": "alow", "office_city": "agoo", "office_barangay": "", "office_zip_code": "4500", "office_employment_area_code": "450024", "preferred_mailing_address": "sample@gmail.com", "occupation": "none", "source_of_income": "0", "monthly_income_range": "0" } ### UPDATE FINANCER INFORMATION POST http://localhost:15869/api/financers/update Content-Type: application/json { "customer_id": 1000, "first_name": "JOSEPH", "middle_name": "", "last_name": "ESTAYO", "birth_date": "04/10/1995", "birth_place": "BULUBUNDUKIN NG JUPITER", "nationality": "JUPITERIAN", "gender": "male", "height": "195", "weight": "195", "civil_status": "SINGLE", "mobile_number": "09091234567", "land_line": "", "office_number": "", "email_address": "sample@gmail.com", "alternative_email_address": "sample2@gmail.com", "facebook_messenger": "", "sms_viber": "", "home_address_type": "", "home_full_address": "asdasda asdqwe asde", "home_no_street": "asdqw asd qwe", "home_subdivision": "asdasd", "home_region": "region 1", "home_province": "alow", "home_city": "agoo", "home_barangay": "", "home_zip_code": "4500", "office_address_type": "", "office_name": "sample office name", "office_building": "sdaksdkjh", "office_full_address": "asdlkadlalk laskdjasldk", "office_no_street": "alsdkjwe", "office_region": "region 1", "office_province": "alow", "office_city": "agoo", "office_barangay": "", "office_zip_code": "4500", "office_employment_area_code": "450024", "preferred_mailing_address": "sample@gmail.com", "occupation": "none", "source_of_income": "0", "monthly_income_range": "0" } ### GET ONE FINANCER INFORMATION GET http://localhost:15869/api/financers/getOne?customer_id=1000