// baseurl of server @baseurl = http://localhost:15869/api/beneficiaries //@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 BENEFICIARY INFORMATION GET http://localhost:15869/api/beneficiaries/ ### STORE BENEFICIARY INFORMATION POST http://localhost:15869/api/beneficiaries/store Content-Type: application/json { "customer_id": 1000, "beneficiaries_details":[ { "customer_id": 1000, "name": "JOSEPH ESTAYO", "relationship": "SIBLING", "birth_date": "04/10/1995" },{ "customer_id": 1000, "name": "MARIE ESTAYO", "relationship": "SIBLING", "birth_date": "04/10/1995" } ] } ### UPDATE BENEFICIARY INFORMATION POST http://localhost:15869/api/beneficiaries/update Content-Type: application/json { "customer_id": 1000, "beneficiaries_details":[ { "customer_id": 1000, "name": "JOSEPH ESTAYO", "relationship": "SIBLING", "birth_date": "04/10/1995" },{ "customer_id": 1000, "name": "MARIE ESTAYO", "relationship": "SIBLING", "birth_date": "04/10/1995" } ] } ### GET ONE BENEFICIARY INFORMATION GET http://localhost:15869/api/beneficiaries/getOne?customer_id=1000