> [name=Dipto K Kundu] # প্রশাসনিক বিভাগ ## BASE URL: http://smartrajshahi.gov.bd/ ## ১. আর্থিক সহায়তা প্রদান **(i) Create Application** ```json Request Body: POST {{BASE_URL}}/api/v1/fh/ { "latitude": "576577657", "longitude": "56765765", "father_name": "Gretchen Davis", "mother_name": "Doris Garrett", "holding_no": "CZDtyy", "ward_number": 990, "moholla": "rtertre", "thana": "Ut debitis non conse", "post_office": "Non et excepteur vol", "district": "Saepe aliquid nostru", "nid_no": "1234567890", "amount": 41, "des": "Est explicabo Venia", "ancillary_documents": "http://192.168.1.111:9000/media/fh/ancillary_documents/2022-10-25/image_2021_11_28T09_02_18_622Z-2022-10-25-12-23-51.png" } Response: Status Code: 201 ``` **(ii) Get List Data** ```json Request Body: GET {{BASE_URL}}/api/v1/fh/ { "count": 1, "next": null, "previous": null, "results": [ { "father_name": "Gretchen Davis", "mother_name": "Doris Garrett", "holding_no": "CZDtyy", "ward_number": "990", "moholla": "rtertre", "thana": "Ut debitis non conse", "post_office": "Non et excepteur vol", "district": "Saepe aliquid nostru", "nid_no": "1234567890", "amount": 41, "des": "Est explicabo Venia", "ancillary_documents": "http://192.168.1.111:9000/media/fh/ancillary_documents/2022-10-25/image_2021_11_28T09_02_18_622Z-2022-10-25-12-23-51.png" } ] } Response: Status Code: 200 ``` ## ২. সিটি কর্পোরেশনের জায়গা ভাড়া **(i) Create Application** ```json Request Body: POST {{BASE_URL}}/api/v1/cpr/ { "latitude": "34534543", "longitude": "3534534", "applicant_name": "DK", "space_name": "tertreter", "date": "20-07-2022", "reason": "DSDSD", "attachment": "http://192.168.1.111:9000/media/placerent/2022-10-25/profileELAN-2022-10-25-13-11-57.jpeg" } Response: Status Code: 201 ``` **(ii) Get List Data** ```json Request Body: GET {{BASE_URL}}/api/v1/cpr/ { "count": 4, "next": null, "previous": null, "results": [ { "latitude": "34534543.0000000", "longitude": "3534534.0000000", "applicant_name": "Dipto Kumar kundu", "space_name": "tertreter", "date": "20-07-2022", "reason": "DSDSD", "attachment": "http://192.168.1.111:9000/media/placerent/2022-10-25/profileELAN-2022-10-25-13-11-57.jpeg" }, ] } Response: Status Code: 200 ```