// baseurl of server @baseurl = http://localhost:15869/api/agentAccreditation //@baseurl = http://119.12.166.178:4700 ### GET TABLELIST FOR Agent Accreditation GET {{baseurl}}/ ### GET TABLELIST FOR Agent Accreditation POST {{baseurl}}/store Content-Type: application/json { "full_name": "Kim Cas", "birthdate": "09-08-2023", "civil_status": "Single", "occupation": "None", "email_address": "sample@gmail.com", "contact_number":"09123456789", "location": "Brgy. Sample", "status": "1", "id": "asdasd", "submitted_date":"09-08-2023" } ### UPDATE Agent Accreditation POST {{baseurl}}/update?id=1 Content-Type: application/json { "agent_app_id": 1, "full_name": "Kim Cas", "birthdate": "09-08-2023", "civil_status": "Single", "occupation": "None", "email_address": "sample@gmail.com", "contact_number":"09123456789", "location": "Brgy. Sample", "status": "1", "id": "asdasd", "submitted_date":"09-08-2023" } ### GET ONE FINANCER INFORMATION GET {{baseurl}}/getOne?id=1 ### POST Add attchment POST {{baseurl}}/AddAttachment?agent_app_id=33 Content-Type: multipart/form-data { "notes": "note1", "attachment_desc": "attachment_desc1", "account_id":"1", // ---- file "attachment":"" }