...
Get Locations
Panel border true borderStyle dashed Request :
GET https://{lr_service}/locations/list/{level}?updatedSince={ISO8601 formatted date}&limit={limit}&offset={offset}
Headers :
X-Auth-Token : {auth token assigned while user registration in HRM}
client_id : {client id of requester in Identity Service Provider}
The level field can contain one of the following :
division
district
upazila
paurasava
union
ward
Expandcode Code Block language jslanguage js title Sample Response Sample Response :
collapse true [ { "code": "1020", "id": "1020", "name": "Example Location", "name_BN": "", "type": "district", "active": 1, "updatedAt": "2016-10-02 13:19:57", "hierarchy": [ { "code": "10", "name": "Example Parent Location", "name_BN": "", "type": "division" }, { "code": "20", "name": "Example Location", "name_BN": "", "type": "district" } ] } ]
Get Single Location Information
Panel border true borderStyle dashed Request :
GET http://hrmtest.dghs.gov.bd/api/1.0/locations/{geoCode}.json
Headers :
X-Auth-Token : {auth token assigned while user registration in HRM}
client_id : {client id of requester in Identity Service Provider}
Code Block expandlanguage Code Block language jsjs title Sample Response Sample Response :
collapse true { "code": "1020", "id": "1020", "name": "Example Location", "name_BN": "", "type": "district", "active": 1, "updatedAt": "2016-10-02 13:19:57", "hierarchy": [ { "code": "10", "name": "Example Parent Location", "name_BN": "", "type": "division" }, { "code": "20", "name": "Example Location", "name_BN": "", "type": "district" } ] }
BHIE
For Bangladesh, the geographical codes for locations are unique for a specific hierarchy.
...