Status: In Progress
Owner: Craig Appl
This scoping document defines the processes and URL endpoints for interacting with the OpenMRS API in order to Create Read and Update locations and teams in OpenMRS.
Workflows
We need to deliver the following workflows that require interactions with the OpenMRS API
- Create OpenMRS locations based on the locations in Reveal
- Create Teams in OpenMRS
- Update OpenMRS location team_id attribute when a team is assigned in the Reveal web UI planning module
OpenMRS API Basics
BaseUrl: https://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1
Credentials: (This needs to be a user with superuser permissions at this time)
Authentication: OpenMRS uses basic auth for to start a session.
- Start a session
- GET BaseUrl/session
- The response will include a response header labeled Set-Cookie. Add the contents of this to subsequent responses
- In Nifi, we add a property to the InvokeHttp processor named Cookie with value ${Set-Cookie}
- GET BaseUrl/session
- End a session
- DELETE BaseUrl/session (with the cookie)
API documentation is available in the OpenMRS Legacy Admin Menu at https://openmrs.reveal-stage.smartregister.org/openmrs/module/webservices/rest/apiDocs.htm (Note that it takes some time to load because it builds it in real time
The API supports different representations that are documented here. You can get a full representation and custom representation.
Location Interactions
We need to Create, Read and Update locations in OpenMRS based on the location hierarchy that was loaded in to Reveal.
These interactions include the following properties:
Property in UI | Type | Description | UUID | Sample POST code |
---|---|---|---|---|
Parent Location | This is the parent uuid of the location in OpenMRS. | N/A | "parentLocation": { "uuid": "43a992e6-6b73-4767-b63f-abeb16737e27" } | |
mspray_location_id | attribute | 3302b1cd-8e89-4d44-89ae-8a285f2c5583 | { "attributeType": { "uuid": "802e4109-56d0-407f-adcb-ea3a082840fc" }, "value": "055059f5-bbc2-489b-a573-56558556b5e0", "voided": false, "resourceVersion": "1.9" } | |
team_id | attribute | 802e4109-56d0-407f-adcb-ea3a082840fc | { "attributeType": { "uuid": "802e4109-56d0-407f-adcb-ea3a082840fc" }, "value": "055059f5-bbc2-489b-a573-56558556b5e0", "voided": false, "resourceVersion": "1.9" } | |
Country | tag | This is a location tag that shows this is the country level. (Thailand: ADM 0) | bdae8d24-df16-47c1-b589-ff58038ba7ca | { "uuid": "bdae8d24-df16-47c1-b589-ff58038ba7ca" } |
Province | tag | This is a location tag that shows this is the provincial level. (Thailand: ADM 1) | 563fba34-7bfa-40f7-a0e0-9dca3c24bfec | { "uuid": "563fba34-7bfa-40f7-a0e0-9dca3c24bfec" } |
District | tag | This is a location tag that shows this is a district level. (Thailand: ADM 2) | 19592b42-5181-49e4-85ab-2c502e7193c1 | { "uuid": "19592b42-5181-49e4-85ab-2c502e7193c1" } |
Sub-district | tag | (Used in Botswana Only) This is a location tag that shows this is the sub-district level. | 7de14bdc-9e2a-4183-a6c9-3b506daac8e4 | { "uuid": "7de14bdc-9e2a-4183-a6c9-3b506daac8e4" } |
Village | tag | This is a location tag that shows this is the village level (Thailand: ADM 3) | 55a54fc4-a6f2-4e14-9132-815687952804 | { "uuid": "55a54fc4-a6f2-4e14-9132-815687952804" } |
Canton | tag | (Used in Thailand Only) This is a location tag that shows this is the canton level. (Thailand: ADM 4) | de2ec1a0-1609-4071-af32-a91752956e95 | { "uuid": "de2ec1a0-1609-4071-af32-a91752956e95" } |
Operational Area | tag | This is a location tag that shows this is the operational area level. This is the lowest level in any hierarchy. (Thailand: ADM 5) | 22abf4d2-c138-463c-8c58-568343dd2b5f | { "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f" } |
GET BaseUrl/location
This returns a complete list of locations with just the minimal information
//GET BaseUrl/location?q=TwoTwoTwo_01 { "results": [ { "uuid": "5398b9e0-71e8-42a5-892d-e031a9a32ca5", "display": "TwoTwoTwo_01", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5398b9e0-71e8-42a5-892d-e031a9a32ca5" } ] } ] }
GET BaseUrl/location/{UUID}
This returns the full location
//GET BaseUrl/location/5398b9e0-71e8-42a5-892d-e031a9a32ca5 { "uuid": "5398b9e0-71e8-42a5-892d-e031a9a32ca5", "display": "TwoTwoTwo_01", "name": "TwoTwoTwo_01", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": null, "country": null, "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": null, "address3": null, "address4": null, "address5": null, "address6": null, "tags": [ { "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f", "display": "Operational Area", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f" } ] } ], "parentLocation": { "uuid": "43a992e6-6b73-4767-b63f-abeb16737e27", "display": "Two Two Two Release Village", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a992e6-6b73-4767-b63f-abeb16737e27" } ] }, "childLocations": [], "retired": false, "attributes": [ { "uuid": "5ecc27f8-5529-4958-8e3d-c08f4608af67", "display": "mspray_location_id: 14e2a7a7-fd08-4bed-8cf8-1eeaed303eda", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5398b9e0-71e8-42a5-892d-e031a9a32ca5/attribute/5ecc27f8-5529-4958-8e3d-c08f4608af67" } ] }, { "uuid": "faba93d1-691e-45ce-8612-4a22e2a251dd", "display": "team_id: 055059f5-bbc2-489b-a573-56558556b5e0", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5398b9e0-71e8-42a5-892d-e031a9a32ca5/attribute/faba93d1-691e-45ce-8612-4a22e2a251dd" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5398b9e0-71e8-42a5-892d-e031a9a32ca5" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5398b9e0-71e8-42a5-892d-e031a9a32ca5?v=full" } ], "resourceVersion": "2.0" }
POST BaseUrl/location Template
This is a sample Nifi template for generating the location that needs to be posted. Note that you can only generate a location at a time and you can't assign the UUID through the API, so you have to get a response for each location, query again and then update the parents.
Variables:
- revealName - The name of the location in the properties.name attribute of the geojson
- geographicLevelOpenmrsUuidMapper - We need to build a mapper to tag this location to the correct geographicLevel (ADM N) as defined above
- openmrsParentUuid - We need to map the Reveal location id to the OpenMRS UUID so that we can correctly identify parents and put it in this field
- revealLocationId - This is the location id of this location in Reveal
- openmrsTeamId - This is the team ID that should be assigned to this location. We use this for operational areas when there is team assignment.
{ "name": "${revealName}", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": null, "country": null, "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": null, "address3": null, "address4": null, "address5": null, "address6": null, "tags": [ { "uuid": "${geographicLevelOpenmrsUuidMapper}" } ], "parentLocation": { "uuid": "${openmrsParentUuid}" }, "childLocations": [], "retired": false, "attributes": [ { "attributeType": { "uuid": "3302b1cd-8e89-4d44-89ae-8a285f2c5583" }, "value": "${revealLocationId}", "voided": false, "resourceVersion": "1.9" }, { "attributeType": { "uuid": "802e4109-56d0-407f-adcb-ea3a082840fc" }, "value": "${openmrsTeamId}", "voided": false, "resourceVersion": "1.9" } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "resourceVersion": "2.0" }
POST BaseUrl/location/{UUID}
This endpoint allows you to update an existing location in the system and should be used for things like reassignment of teams. You only have to POST the updated fields that you wish to change
Team Management
OpenMRS has a team management endpoint where we Create and Read teams. We don't need to Update teams at this time.
GET BaseUrl/team/team?v=default
This endpoint returns a list of all teams in the system. The most important information is the uuid and the teamName
// https://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/team/team?v=default { "results": [ { "display": "Miti", "uuid": "7e104eee-ec8a-4733-bcf7-c02c51cf43f4", "teamName": "Miti", "teamIdentifier": "MTL", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 3, "location": { "uuid": "18e9f800-55c7-4261-907a-d804d6081f93", "display": "ea Miti Rural Health Centre", "name": "ea Miti Rural Health Centre", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": "Eastern", "country": "Zambia", "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": "Chadiza", "address3": null, "address4": null, "address5": null, "address6": null, "tags": [ { "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e", "display": "Rural Health Centre", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e" } ] } ], "parentLocation": { "uuid": "315ca4ed-eebd-40ca-87a8-cf5aac69dd37", "display": "ea Chadiza District", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/315ca4ed-eebd-40ca-87a8-cf5aac69dd37" } ] }, "childLocations": [ { "uuid": "f6caabb8-8461-4f04-a0d1-dc57208009eb", "display": "MKB_5", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f6caabb8-8461-4f04-a0d1-dc57208009eb" } ] }, { "uuid": "b4de8b63-d430-47eb-831b-8c291a828e04", "display": "MTI_13", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b4de8b63-d430-47eb-831b-8c291a828e04" } ] }, { "uuid": "91221652-f3b3-47fe-9997-543bac1f0a74", "display": "MTI_18", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/91221652-f3b3-47fe-9997-543bac1f0a74" } ] }, { "uuid": "7322f6b4-5c23-4d08-85b2-8cad40a16374", "display": "MTI_24", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7322f6b4-5c23-4d08-85b2-8cad40a16374" } ] }, { "uuid": "f3dcba9e-4728-45d7-a549-07be9e9d4c73", "display": "MTI_47", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f3dcba9e-4728-45d7-a549-07be9e9d4c73" } ] }, { "uuid": "37d307fb-895f-4b93-838f-0456e0fdaf05", "display": "MTI_48", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/37d307fb-895f-4b93-838f-0456e0fdaf05" } ] }, { "uuid": "fc93e7e1-3f48-49f6-8c2d-c995a748edca", "display": "MTI_49", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fc93e7e1-3f48-49f6-8c2d-c995a748edca" } ] }, { "uuid": "be786c91-7883-42fa-8d26-d8fb9d5f7366", "display": "MTI_5", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/be786c91-7883-42fa-8d26-d8fb9d5f7366" } ] }, { "uuid": "a1bf2902-4475-45ee-a348-d17fe5f1909d", "display": "MTI_52", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/a1bf2902-4475-45ee-a348-d17fe5f1909d" } ] }, { "uuid": "434780bd-924d-4bc3-8913-2d061e71a041", "display": "MTI_53", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/434780bd-924d-4bc3-8913-2d061e71a041" } ] }, { "uuid": "1fce4065-dae5-473f-9ed3-05e3b1e91738", "display": "MTI_55", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1fce4065-dae5-473f-9ed3-05e3b1e91738" } ] }, { "uuid": "418589ef-0de1-416e-b72a-b0c599fb3a0d", "display": "MTI_57", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/418589ef-0de1-416e-b72a-b0c599fb3a0d" } ] }, { "uuid": "c6c2f6ad-3692-4212-b87f-b73d5285b47c", "display": "MTI_58", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c6c2f6ad-3692-4212-b87f-b73d5285b47c" } ] }, { "uuid": "f5e81bb0-6b2c-4588-b3c0-d1b04f304b9f", "display": "MTI_59", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f5e81bb0-6b2c-4588-b3c0-d1b04f304b9f" } ] }, { "uuid": "5d9fc8bf-dbfd-440a-89c5-edbdfd93b374", "display": "MTI_60", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5d9fc8bf-dbfd-440a-89c5-edbdfd93b374" } ] }, { "uuid": "2cea88fe-4c11-4ee0-a02a-08cb04420da5", "display": "MTI_63", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2cea88fe-4c11-4ee0-a02a-08cb04420da5" } ] }, { "uuid": "178b0c0a-d9af-4796-b4e0-cdd4533328d7", "display": "MTI_64", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/178b0c0a-d9af-4796-b4e0-cdd4533328d7" } ] }, { "uuid": "ce26ec21-ea27-48f3-aa7b-e02c2b536af4", "display": "MTI_65", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ce26ec21-ea27-48f3-aa7b-e02c2b536af4" } ] }, { "uuid": "79f156de-d543-48a4-bb3c-639fe151f567", "display": "MTI_66", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/79f156de-d543-48a4-bb3c-639fe151f567" } ] }, { "uuid": "8dca4838-12ad-4806-a3b0-4d4b443d3c99", "display": "MTI_68", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/8dca4838-12ad-4806-a3b0-4d4b443d3c99" } ] }, { "uuid": "621b8f4d-fb42-44eb-818f-5f1db74a4f5b", "display": "MTI_69", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/621b8f4d-fb42-44eb-818f-5f1db74a4f5b" } ] }, { "uuid": "063d7df2-b9f4-4e49-8f6e-b78b63933f5d", "display": "MTI_70", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/063d7df2-b9f4-4e49-8f6e-b78b63933f5d" } ] }, { "uuid": "df09d9a0-5314-49da-8633-6c15e7da7bff", "display": "MTI_71", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/df09d9a0-5314-49da-8633-6c15e7da7bff" } ] }, { "uuid": "fe16e30a-f2b8-494a-892c-a01940f496d2", "display": "MTI_73", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fe16e30a-f2b8-494a-892c-a01940f496d2" } ] }, { "uuid": "9c98917e-1fb4-46b1-88ab-093a838e449b", "display": "MTI_74", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9c98917e-1fb4-46b1-88ab-093a838e449b" } ] }, { "uuid": "d8a81789-24b9-42f4-a0ec-50e363f28595", "display": "MTI_75", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d8a81789-24b9-42f4-a0ec-50e363f28595" } ] }, { "uuid": "cd5d55f6-dad0-4d5c-b49e-c3885118866b", "display": "MTI_79", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/cd5d55f6-dad0-4d5c-b49e-c3885118866b" } ] }, { "uuid": "efed725f-d6ff-4f30-b78e-c3fa6a9aec54", "display": "MTI_80", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/efed725f-d6ff-4f30-b78e-c3fa6a9aec54" } ] }, { "uuid": "27ebabc7-c94e-4815-8754-e69248ca4c7a", "display": "MTI_83", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/27ebabc7-c94e-4815-8754-e69248ca4c7a" } ] }, { "uuid": "c46813a0-545a-4dad-8eb6-f8ecc2c70ef3", "display": "MTI_84", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c46813a0-545a-4dad-8eb6-f8ecc2c70ef3" } ] }, { "uuid": "f2e83797-6511-4a35-8864-26d6ea362300", "display": "MTI_85", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2e83797-6511-4a35-8864-26d6ea362300" } ] }, { "uuid": "269cb1d7-e06f-4a73-8b8f-1a3c54bc4c8f", "display": "MTI_87", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/269cb1d7-e06f-4a73-8b8f-1a3c54bc4c8f" } ] }, { "uuid": "9d682f61-c27b-41c4-abed-e079bd07cf1b", "display": "MTI_INV", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9d682f61-c27b-41c4-abed-e079bd07cf1b" } ] } ], "retired": false, "attributes": [ { "uuid": "cd11c2ed-ae25-4bc1-8b9d-4f0d1f2635bb", "display": "mspray_location_id: 2953", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93/attribute/cd11c2ed-ae25-4bc1-8b9d-4f0d1f2635bb" } ] }, { "uuid": "62e5e9cc-da30-49c5-90cf-7fae48b68334", "display": "campaign_id: IRS_2019_S1", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93/attribute/62e5e9cc-da30-49c5-90cf-7fae48b68334" } ] }, { "uuid": "d8548400-c006-45ac-bc54-e7c45dba1d00", "display": "campaign_id: campaign_001", "voided": true, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93/attribute/d8548400-c006-45ac-bc54-e7c45dba1d00" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/18e9f800-55c7-4261-907a-d804d6081f93?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "Tafelansoni", "uuid": "fd8274ad-2acb-439d-adad-7a0185af0120", "teamName": "Tafelansoni", "teamIdentifier": "TFL", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "5c0fc51f-8bd0-42a9-a21e-7c0fff122983", "display": "ea Tafelansoni Rural Health Centre", "name": "ea Tafelansoni Rural Health Centre", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": "Eastern", "country": "Zambia", "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": "Chadiza", "address3": null, "address4": null, "address5": null, "address6": null, "tags": [ { "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e", "display": "Rural Health Centre", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e" } ] } ], "parentLocation": { "uuid": "315ca4ed-eebd-40ca-87a8-cf5aac69dd37", "display": "ea Chadiza District", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/315ca4ed-eebd-40ca-87a8-cf5aac69dd37" } ] }, "childLocations": [ { "uuid": "bdc20d37-c9a6-4a62-87d2-a5e3df3058c3", "display": "TFL_250", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/bdc20d37-c9a6-4a62-87d2-a5e3df3058c3" } ] }, { "uuid": "ea21d62e-8108-429d-a093-e97e6bdafd6b", "display": "TFL_251", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ea21d62e-8108-429d-a093-e97e6bdafd6b" } ] }, { "uuid": "eb9793c1-74b7-427a-b6f0-1d8bf6a79b0f", "display": "TFL_252", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/eb9793c1-74b7-427a-b6f0-1d8bf6a79b0f" } ] }, { "uuid": "0942021c-b966-4a90-b5cc-0afc9a8b888a", "display": "TFL_253", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0942021c-b966-4a90-b5cc-0afc9a8b888a" } ] }, { "uuid": "3d0184ff-8bb6-42da-89e2-2bb2c06b0e37", "display": "TFL_259a", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/3d0184ff-8bb6-42da-89e2-2bb2c06b0e37" } ] }, { "uuid": "6a5a3ff6-9b23-4d03-90dc-9ef18ef1cea6", "display": "TFL_259b", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6a5a3ff6-9b23-4d03-90dc-9ef18ef1cea6" } ] }, { "uuid": "d31d74d1-7b7c-4665-ae4a-7f7b35d82216", "display": "TFL_259c", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d31d74d1-7b7c-4665-ae4a-7f7b35d82216" } ] } ], "retired": false, "attributes": [ { "uuid": "d9030af1-fe68-4116-8fe3-de5ee2b6d3a8", "display": "mspray_location_id: 2948", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983/attribute/d9030af1-fe68-4116-8fe3-de5ee2b6d3a8" } ] }, { "uuid": "2964d4fe-644a-427b-9187-c670e3bb69e9", "display": "campaign_id: campaign_002,campaign_005", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983/attribute/2964d4fe-644a-427b-9187-c670e3bb69e9" } ] }, { "uuid": "3c24bc3e-9a75-4869-aef2-72fd9fee9b25", "display": "campaign_id: campaign_002", "voided": true, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983/attribute/3c24bc3e-9a75-4869-aef2-72fd9fee9b25" } ] }, { "uuid": "e65cd564-7203-4f75-96b4-e81a74b8f99c", "display": "campaign_id: campaign_005", "voided": true, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983/attribute/e65cd564-7203-4f75-96b4-e81a74b8f99c" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5c0fc51f-8bd0-42a9-a21e-7c0fff122983?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "Reveal", "uuid": "0a9d6c6c-68dc-4435-8075-2eb8d0f0c3cf", "teamName": "Reveal", "teamIdentifier": "reveal", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "d4884ce5-4a42-40af-85be-093ddf6ed6f4", "display": "Happy Kids Clinic", "name": "Happy Kids Clinic", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": null, "country": null, "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": null, "address3": null, "address4": null, "address5": null, "address6": null, "tags": [ { "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e", "display": "Rural Health Centre", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e" } ] } ], "parentLocation": { "uuid": "3356941e-a729-4297-a652-cfe3596cbd0f", "display": "Fort Jameson", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/3356941e-a729-4297-a652-cfe3596cbd0f" } ] }, "childLocations": [ { "uuid": "27fb2bc0-9e58-4c29-bca0-f69a5dcb20f6", "display": "Chimwemwe", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/27fb2bc0-9e58-4c29-bca0-f69a5dcb20f6" } ] }, { "uuid": "9912bdeb-0346-4f46-8c58-3eef23cacfcb", "display": "TFL_259d", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9912bdeb-0346-4f46-8c58-3eef23cacfcb" } ] }, { "uuid": "0162ca98-e25e-4fb5-989e-3c8390b55534", "display": "Tuyandane", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0162ca98-e25e-4fb5-989e-3c8390b55534" } ] }, { "uuid": "7ff665d8-77a2-4eae-8eae-47193c547de5", "display": "Twatasha", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7ff665d8-77a2-4eae-8eae-47193c547de5" } ] } ], "retired": false, "attributes": [ { "uuid": "90b133c4-7a38-4253-b284-93e02a3f0990", "display": "campaign_id: 2019_Namibia_IRS_Field_Testing", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4/attribute/90b133c4-7a38-4253-b284-93e02a3f0990" } ] }, { "uuid": "08eb42fd-02c1-4c6b-8fcd-f875d60e6e77", "display": "campaign_id: campaign_id", "voided": true, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4/attribute/08eb42fd-02c1-4c6b-8fcd-f875d60e6e77" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "Test Team", "uuid": "dd090dac-6049-476a-8312-936139a34d60", "teamName": "Test Team", "teamIdentifier": "test_team", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "0407b76c-03a9-4532-95b2-ef6d4460924e", "display": "Test RHC", "name": "Test RHC", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": null, "country": "Test", "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": "Test", "address3": null, "address4": "Test", "address5": null, "address6": null, "tags": [ { "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e", "display": "Rural Health Centre", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e" } ] } ], "parentLocation": { "uuid": "43a55e5e-f902-4ecf-93d9-a8c2b9e38381", "display": "Test District", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a55e5e-f902-4ecf-93d9-a8c2b9e38381" } ] }, "childLocations": [], "retired": false, "attributes": [ { "uuid": "c112ac8e-f2e5-4e7a-a9cc-6b058db83646", "display": "campaign_id: IRS_2019_S1", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0407b76c-03a9-4532-95b2-ef6d4460924e/attribute/c112ac8e-f2e5-4e7a-a9cc-6b058db83646" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0407b76c-03a9-4532-95b2-ef6d4460924e" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0407b76c-03a9-4532-95b2-ef6d4460924e?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "Bwanunkha RHC", "uuid": "62159d2f-b167-488a-98e3-3bccc87128cf", "teamName": "Bwanunkha RHC", "teamIdentifier": "BNK_RHC", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "64d001f5-249a-405f-aa60-e9c2ff5fab3b", "display": "ea Bwanunkha Rural Health Centre", "name": "ea Bwanunkha Rural Health Centre", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": "Eastern", "country": "Zambia", "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": "Chadiza", "address3": null, "address4": null, "address5": null, "address6": null, "tags": [ { "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e", "display": "Rural Health Centre", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e" } ] } ], "parentLocation": { "uuid": "315ca4ed-eebd-40ca-87a8-cf5aac69dd37", "display": "ea Chadiza District", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/315ca4ed-eebd-40ca-87a8-cf5aac69dd37" } ] }, "childLocations": [ { "uuid": "ee70bc5e-a53e-44cc-9bb6-6a3505b61576", "display": "BNK_10", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ee70bc5e-a53e-44cc-9bb6-6a3505b61576" } ] }, { "uuid": "0340eb88-a47c-4bb4-a8b3-acfd0b5f33c2", "display": "BNK_11", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0340eb88-a47c-4bb4-a8b3-acfd0b5f33c2" } ] } ], "retired": false, "attributes": [ { "uuid": "40dc5ce0-be3f-4238-b4ec-0845269694fc", "display": "mspray_location_id: 2952", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/64d001f5-249a-405f-aa60-e9c2ff5fab3b/attribute/40dc5ce0-be3f-4238-b4ec-0845269694fc" } ] }, { "uuid": "26c58e38-40b4-4c3b-a582-0342bd753a2a", "display": "campaign_id: IRS_2019_S1", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/64d001f5-249a-405f-aa60-e9c2ff5fab3b/attribute/26c58e38-40b4-4c3b-a582-0342bd753a2a" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/64d001f5-249a-405f-aa60-e9c2ff5fab3b" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/64d001f5-249a-405f-aa60-e9c2ff5fab3b?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "Kariba", "uuid": "2f47d3a8-4e80-4584-bd12-070ab1a6df3d", "teamName": "Kariba", "teamIdentifier": "kariba", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 3, "location": { "uuid": "0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415", "display": "so Kariba RHC", "name": "so Kariba RHC", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": "Southern Province", "country": "Zambia", "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": "Siavonga", "address3": null, "address4": "Kariba", "address5": null, "address6": null, "tags": [ { "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e", "display": "Rural Health Centre", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e" } ] } ], "parentLocation": { "uuid": "ecdfe1ab-f0f4-4510-9384-33b3b7391c7d", "display": "so Siavonga District", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ecdfe1ab-f0f4-4510-9384-33b3b7391c7d" } ] }, "childLocations": [ { "uuid": "52264e64-3183-4f56-9e2a-1eae89d218a4", "display": "karr_171", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/52264e64-3183-4f56-9e2a-1eae89d218a4" } ] }, { "uuid": "2c832e37-24d1-4b10-ad25-a3510c47106d", "display": "karr_177", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2c832e37-24d1-4b10-ad25-a3510c47106d" } ] }, { "uuid": "89a4b8be-67c9-4fd3-9bc9-2142cfd069fa", "display": "karr_2", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/89a4b8be-67c9-4fd3-9bc9-2142cfd069fa" } ] }, { "uuid": "cf17f636-aba6-4799-adb7-79d3e9f9ac92", "display": "karr_313", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/cf17f636-aba6-4799-adb7-79d3e9f9ac92" } ] }, { "uuid": "ae6f4933-b810-4a5e-9ff5-a3e14d8a5d2f", "display": "karr_34", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ae6f4933-b810-4a5e-9ff5-a3e14d8a5d2f" } ] }, { "uuid": "99c494be-5b52-4af8-8a35-f473ce64c881", "display": "karr_421", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/99c494be-5b52-4af8-8a35-f473ce64c881" } ] }, { "uuid": "d142ea57-7678-4aba-aedd-bbb7b56b5c8d", "display": "karr_433", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d142ea57-7678-4aba-aedd-bbb7b56b5c8d" } ] }, { "uuid": "660e3dce-78c5-4f58-b796-252afc14ea8f", "display": "karr_44", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/660e3dce-78c5-4f58-b796-252afc14ea8f" } ] }, { "uuid": "afd0d5c2-a927-49d6-a6aa-338f760ec9a7", "display": "karr_5", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/afd0d5c2-a927-49d6-a6aa-338f760ec9a7" } ] }, { "uuid": "d31b8916-993f-411b-95b5-a87d58f1b466", "display": "karr_50", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d31b8916-993f-411b-95b5-a87d58f1b466" } ] }, { "uuid": "af143250-9569-473d-9272-79b33e00b9c4", "display": "karr_56", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/af143250-9569-473d-9272-79b33e00b9c4" } ] }, { "uuid": "f6dd1649-4686-4bde-b9f1-b60fe034999d", "display": "karr_65", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f6dd1649-4686-4bde-b9f1-b60fe034999d" } ] }, { "uuid": "0eb5d1cb-1e8c-467d-aa95-639dc3bd6b1e", "display": "karr_7", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0eb5d1cb-1e8c-467d-aa95-639dc3bd6b1e" } ] }, { "uuid": "be2800cf-bd0a-48f6-9a01-69e704890177", "display": "karr_8", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/be2800cf-bd0a-48f6-9a01-69e704890177" } ] } ], "retired": false, "attributes": [ { "uuid": "f8cadfb5-e7dd-4b30-a222-59c7cdd8a8cc", "display": "mspray_location_id: 3959", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415/attribute/f8cadfb5-e7dd-4b30-a222-59c7cdd8a8cc" } ] }, { "uuid": "be06a019-3317-441a-abc1-804f32e15966", "display": "campaign_id: 2019_Akros_IRS_Field_Testing", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415/attribute/be06a019-3317-441a-abc1-804f32e15966" } ] }, { "uuid": "a77db7ed-33d3-4a8c-b793-85429e568e16", "display": "mspray_location_id: 3955", "voided": true, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415/attribute/a77db7ed-33d3-4a8c-b793-85429e568e16" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0a8dbfcb-cc9e-4c3b-b9bd-5ea1c58ea415?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "Kariba HAHC", "uuid": "6effbdd9-6258-47af-b6a5-cd8a9c40aefd", "teamName": "Kariba HAHC", "teamIdentifier": "karibaHAHC", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 2, "location": { "uuid": "564635d4-efe4-4d63-b30d-dcdb88a2b823", "display": "so Kariba HAHC", "name": "so Kariba HAHC", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": "Southern Province", "country": "Zambia", "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": "Siavonga", "address3": null, "address4": "Kariba HAHC", "address5": null, "address6": null, "tags": [ { "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e", "display": "Rural Health Centre", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e" } ] } ], "parentLocation": { "uuid": "ecdfe1ab-f0f4-4510-9384-33b3b7391c7d", "display": "so Siavonga District", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ecdfe1ab-f0f4-4510-9384-33b3b7391c7d" } ] }, "childLocations": [ { "uuid": "ac4bda3b-e0b3-45ef-b2ca-9f6baac82917", "display": "karh_127", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ac4bda3b-e0b3-45ef-b2ca-9f6baac82917" } ] }, { "uuid": "e040fc37-0d57-4c75-9ab9-2ffa98275fa6", "display": "karh_136", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e040fc37-0d57-4c75-9ab9-2ffa98275fa6" } ] }, { "uuid": "e7474bea-5b43-4c5b-b2cc-b27c0b502ac0", "display": "karh_150", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e7474bea-5b43-4c5b-b2cc-b27c0b502ac0" } ] }, { "uuid": "921fcec6-2b79-4fa3-9e41-9f8af25582ea", "display": "karh_163", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/921fcec6-2b79-4fa3-9e41-9f8af25582ea" } ] }, { "uuid": "e10a11a5-30e9-438f-88ac-cece20fbf95c", "display": "karh_170", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e10a11a5-30e9-438f-88ac-cece20fbf95c" } ] }, { "uuid": "5f935ed5-e0bb-4cb3-92c9-0959217bb1fb", "display": "karh_18", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5f935ed5-e0bb-4cb3-92c9-0959217bb1fb" } ] }, { "uuid": "426c37f2-fbf4-43e8-9dc6-afcc46f50d80", "display": "karh_252", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/426c37f2-fbf4-43e8-9dc6-afcc46f50d80" } ] }, { "uuid": "1cc11ec8-f909-4494-9b49-645249d5610d", "display": "karh_280", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1cc11ec8-f909-4494-9b49-645249d5610d" } ] }, { "uuid": "a0fb0b6b-cf57-4397-88be-07c3c703aab0", "display": "karh_387", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/a0fb0b6b-cf57-4397-88be-07c3c703aab0" } ] }, { "uuid": "fc1a2a2f-94ac-4f54-a740-ae14b40ee7be", "display": "karh_444", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fc1a2a2f-94ac-4f54-a740-ae14b40ee7be" } ] }, { "uuid": "0e971fdf-5169-42b9-a7f0-5dcba02dd34e", "display": "karh_462", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0e971fdf-5169-42b9-a7f0-5dcba02dd34e" } ] }, { "uuid": "1263ed1f-b665-43f5-89bf-c61c70623258", "display": "karh_47", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1263ed1f-b665-43f5-89bf-c61c70623258" } ] }, { "uuid": "e78502b4-9fe2-4f3d-bff4-e70d81a28cfb", "display": "karh_58", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/e78502b4-9fe2-4f3d-bff4-e70d81a28cfb" } ] } ], "retired": false, "attributes": [ { "uuid": "d7383579-b2df-4582-9241-4352ea841eff", "display": "mspray_location_id: 3958", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823/attribute/d7383579-b2df-4582-9241-4352ea841eff" } ] }, { "uuid": "e8e0c74d-a77f-447c-9991-9b19103f8c44", "display": "campaign_id: 2019_Akros_IRS_Field_Testing", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823/attribute/e8e0c74d-a77f-447c-9991-9b19103f8c44" } ] }, { "uuid": "9206ed6f-7f89-4b05-8b07-811854105a3e", "display": "mspray_location_id: 3954", "voided": true, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823/attribute/9206ed6f-7f89-4b05-8b07-811854105a3e" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/564635d4-efe4-4d63-b30d-dcdb88a2b823?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "Mtendere", "uuid": "bd2efe2b-7dcf-4d48-b2ac-27fced048713", "teamName": "Mtendere", "teamIdentifier": "Mtendere", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "63123ed0-d893-412c-9f2e-d1194c5394bd", "display": "Mtendere RHC", "name": "Mtendere RHC", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": "Lusaka", "country": "Zambia", "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": "Lusaka", "address3": null, "address4": "Mtendere", "address5": null, "address6": null, "tags": [ { "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e", "display": "Rural Health Centre", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e" } ] } ], "parentLocation": { "uuid": "a15d31fb-1a8f-4f4f-8ab6-127ee3ed92e7", "display": "ls Lusaka District", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/a15d31fb-1a8f-4f4f-8ab6-127ee3ed92e7" } ] }, "childLocations": [ { "uuid": "f2b5eec1-5cba-4dbe-a019-d6436ee2fa12", "display": "Akros_1", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2b5eec1-5cba-4dbe-a019-d6436ee2fa12" } ] }, { "uuid": "617e2a06-8235-4e8a-a43b-1c44f1565af8", "display": "Akros_2", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/617e2a06-8235-4e8a-a43b-1c44f1565af8" } ] } ], "retired": false, "attributes": [ { "uuid": "aff8a25d-1932-4250-98ec-3556b1d443e1", "display": "mspray_location_id: 2942", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/63123ed0-d893-412c-9f2e-d1194c5394bd/attribute/aff8a25d-1932-4250-98ec-3556b1d443e1" } ] }, { "uuid": "1cdaaeef-df2f-4955-bb4e-ce900d623a7b", "display": "campaign_id: 2019_Akros_IRS_Field_Testing", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/63123ed0-d893-412c-9f2e-d1194c5394bd/attribute/1cdaaeef-df2f-4955-bb4e-ce900d623a7b" } ] }, { "uuid": "6e375b3a-0643-459b-91a5-f6bf9fd9b946", "display": "team_id: bd2efe2b-7dcf-4d48-b2ac-27fced048713", "voided": true, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/63123ed0-d893-412c-9f2e-d1194c5394bd/attribute/6e375b3a-0643-459b-91a5-f6bf9fd9b946" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/63123ed0-d893-412c-9f2e-d1194c5394bd" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/63123ed0-d893-412c-9f2e-d1194c5394bd?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "Namibia", "uuid": "d01878e9-174f-430a-ad76-4b93ef4bf57c", "teamName": "Namibia", "teamIdentifier": "Nam", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "d4884ce5-4a42-40af-85be-093ddf6ed6f4", "display": "Happy Kids Clinic", "name": "Happy Kids Clinic", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": null, "country": null, "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": null, "address3": null, "address4": null, "address5": null, "address6": null, "tags": [ { "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e", "display": "Rural Health Centre", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e" } ] } ], "parentLocation": { "uuid": "3356941e-a729-4297-a652-cfe3596cbd0f", "display": "Fort Jameson", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/3356941e-a729-4297-a652-cfe3596cbd0f" } ] }, "childLocations": [ { "uuid": "27fb2bc0-9e58-4c29-bca0-f69a5dcb20f6", "display": "Chimwemwe", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/27fb2bc0-9e58-4c29-bca0-f69a5dcb20f6" } ] }, { "uuid": "9912bdeb-0346-4f46-8c58-3eef23cacfcb", "display": "TFL_259d", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9912bdeb-0346-4f46-8c58-3eef23cacfcb" } ] }, { "uuid": "0162ca98-e25e-4fb5-989e-3c8390b55534", "display": "Tuyandane", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/0162ca98-e25e-4fb5-989e-3c8390b55534" } ] }, { "uuid": "7ff665d8-77a2-4eae-8eae-47193c547de5", "display": "Twatasha", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7ff665d8-77a2-4eae-8eae-47193c547de5" } ] } ], "retired": false, "attributes": [ { "uuid": "90b133c4-7a38-4253-b284-93e02a3f0990", "display": "campaign_id: 2019_Namibia_IRS_Field_Testing", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4/attribute/90b133c4-7a38-4253-b284-93e02a3f0990" } ] }, { "uuid": "08eb42fd-02c1-4c6b-8fcd-f875d60e6e77", "display": "campaign_id: campaign_id", "voided": true, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4/attribute/08eb42fd-02c1-4c6b-8fcd-f875d60e6e77" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d4884ce5-4a42-40af-85be-093ddf6ed6f4?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "Botswana", "uuid": "e5470c0b-2349-45ec-bdd1-e0ed5a120a87", "teamName": "Botswana", "teamIdentifier": "Bot", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "7478a0a0-0aac-4886-999b-0911dfd4ec8c", "display": "Ngwaketse North", "name": "Ngwaketse North", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": null, "country": null, "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": null, "address3": null, "address4": null, "address5": null, "address6": null, "tags": [ { "uuid": "7de14bdc-9e2a-4183-a6c9-3b506daac8e4", "display": "Sub-district", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/7de14bdc-9e2a-4183-a6c9-3b506daac8e4" } ] } ], "parentLocation": { "uuid": "cbfe24e8-0433-49c7-927f-a04c06f35bfa", "display": "Southern District", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/cbfe24e8-0433-49c7-927f-a04c06f35bfa" } ] }, "childLocations": [ { "uuid": "1c964c3b-d638-464f-b3f0-cca3e0f655a1", "display": "Sekoma City", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1c964c3b-d638-464f-b3f0-cca3e0f655a1" } ] } ], "retired": false, "attributes": [ { "uuid": "f1a74deb-6437-46c3-a210-ba95ddcacc36", "display": "mspray_location_id: 88f02ede-2c39-4b15-b664-1d005853dce3", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7478a0a0-0aac-4886-999b-0911dfd4ec8c/attribute/f1a74deb-6437-46c3-a210-ba95ddcacc36" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7478a0a0-0aac-4886-999b-0911dfd4ec8c" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7478a0a0-0aac-4886-999b-0911dfd4ec8c?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "Chaom Chau", "uuid": "fdc01b66-ee93-4ac2-8df1-b526ccbf0914", "teamName": "Chaom Chau", "teamIdentifier": "ChaomChau", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 2, "location": { "uuid": "5156c5bc-410a-40f6-bb61-ae4b851ff2f7", "display": "Ou Smach", "name": "Ou Smach", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": "Oddar Meanchey Province", "country": "Cambodia", "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": "Samraong", "address3": null, "address4": "Ou Smach", "address5": null, "address6": null, "tags": [ { "uuid": "b5372a31-13f5-48f9-a441-bcb5adf8ac6e", "display": "Rural Health Centre", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/b5372a31-13f5-48f9-a441-bcb5adf8ac6e" } ] } ], "parentLocation": { "uuid": "c5ebc56d-14f8-4a94-bc60-f0c02de7e9ea", "display": "Samraong", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c5ebc56d-14f8-4a94-bc60-f0c02de7e9ea" } ] }, "childLocations": [ { "uuid": "452632c7-c1ac-411f-953a-eb4fa1b1516f", "display": "OuSM_01", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/452632c7-c1ac-411f-953a-eb4fa1b1516f" } ] }, { "uuid": "de183656-e2da-4499-b4cf-2a2a71cee213", "display": "OuSM_02", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de183656-e2da-4499-b4cf-2a2a71cee213" } ] } ], "retired": false, "attributes": [ { "uuid": "f2783b47-fdc0-4cc8-9787-491bd292c6cd", "display": "mspray_location_id: efd628d1-cfbf-4f51-bc40-21bc85d43648", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5156c5bc-410a-40f6-bb61-ae4b851ff2f7/attribute/f2783b47-fdc0-4cc8-9787-491bd292c6cd" } ] }, { "uuid": "37515818-4d60-4411-99c6-770145c643e7", "display": "campaign_id: 2019_Cambodia_IRS", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5156c5bc-410a-40f6-bb61-ae4b851ff2f7/attribute/37515818-4d60-4411-99c6-770145c643e7" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5156c5bc-410a-40f6-bb61-ae4b851ff2f7" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5156c5bc-410a-40f6-bb61-ae4b851ff2f7?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "ThanLuangVillage1", "uuid": "09962f7c-8dab-4dee-96e2-354382aec76a", "teamName": "ThanLuangVillage1", "teamIdentifier": "TLv1", "supervisor": "ThaLuang Village1", "supervisorUuid": "9167acfa-878c-4869-8df6-14743484a235", "supervisorTeam": "ThanLuangVillage1", "supervisorTeamUuid": "09962f7c-8dab-4dee-96e2-354382aec76a", "supervisorIdentifier": "tlv1", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6", "display": "Tha Luang Village 1", "name": "Tha Luang Village 1", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": null, "country": null, "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": null, "address3": "Tha Luang Village 1", "address4": "Tha Luang", "address5": null, "address6": null, "tags": [ { "uuid": "55a54fc4-a6f2-4e14-9132-815687952804", "display": "Village", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804" } ] } ], "parentLocation": { "uuid": "59c7270b-9783-43c5-bec7-4a6716d7c646", "display": "Tha Luang Canton", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/59c7270b-9783-43c5-bec7-4a6716d7c646" } ] }, "childLocations": [ { "uuid": "32eec6c4-d325-483a-b874-fa496f9c221c", "display": "TLv1_01", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/32eec6c4-d325-483a-b874-fa496f9c221c" } ] }, { "uuid": "de28c78d-3111-4266-957b-c731a3330c1d", "display": "TLv1_02", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de28c78d-3111-4266-957b-c731a3330c1d" } ] } ], "retired": false, "attributes": [ { "uuid": "7703cb1b-78f6-4cf1-9e2d-f9a78554996c", "display": "campaign_id: 10f9e9fa-ce34-4b27-a961-72fab5206ab6", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6/attribute/7703cb1b-78f6-4cf1-9e2d-f9a78554996c" } ] }, { "uuid": "e4ed2565-bd57-4ade-9207-226128c6f90a", "display": "mspray_location_id: dad42fa6-b9b8-4658-bf25-bfa7ab5b16ae", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6/attribute/e4ed2565-bd57-4ade-9207-226128c6f90a" } ] }, { "uuid": "e03b3fd1-b879-40aa-9330-780472feec57", "display": "campaign_id: IRS_2019_Tha_Luang_Canton", "voided": true, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6/attribute/e03b3fd1-b879-40aa-9330-780472feec57" } ] }, { "uuid": "233a4a26-14f9-4e02-951e-16e01cb45fbe", "display": "campaign_id: IRS_2019_Tha_Luang_Canton,FI_A1_TLv1_01,FI_A1_TLv1_02", "voided": true, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6/attribute/233a4a26-14f9-4e02-951e-16e01cb45fbe" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de49ae54-6ac0-4e3f-9b68-f2eaa8a05bd6?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "ThanLuangVillage2", "uuid": "ff9b3f2f-528f-44d7-8985-2e64f554e7ed", "teamName": "ThanLuangVillage2", "teamIdentifier": "TLv2", "supervisor": "ThaLuang Village2", "supervisorUuid": "ec4fbc2f-e4dd-4b32-946b-35984ba6ae45", "supervisorTeam": "ThanLuangVillage2", "supervisorTeamUuid": "ff9b3f2f-528f-44d7-8985-2e64f554e7ed", "supervisorIdentifier": "tlv2", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "c472793e-dbbf-4e40-a637-78ea126c1a76", "display": "Tha Luang Village 2", "name": "Tha Luang Village 2", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": "Lop Buri", "country": "Thailand", "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": "Tha Luang", "address3": "Tha Luang Village 2", "address4": "Tha Luang", "address5": null, "address6": null, "tags": [ { "uuid": "55a54fc4-a6f2-4e14-9132-815687952804", "display": "Village", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804" } ] } ], "parentLocation": { "uuid": "59c7270b-9783-43c5-bec7-4a6716d7c646", "display": "Tha Luang Canton", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/59c7270b-9783-43c5-bec7-4a6716d7c646" } ] }, "childLocations": [ { "uuid": "518e6079-e086-4fea-96b7-1db12a11c630", "display": "TLv2_01", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/518e6079-e086-4fea-96b7-1db12a11c630" } ] }, { "uuid": "bfdd6f41-4c8f-45ef-971a-d7517444eb7e", "display": "TLv2_02", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/bfdd6f41-4c8f-45ef-971a-d7517444eb7e" } ] } ], "retired": false, "attributes": [ { "uuid": "f2ab111d-dbad-4440-b930-2c95e145fc42", "display": "mspray_location_id: d56a4344-a7d0-4285-9fe4-c64fd7fc27d4", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c472793e-dbbf-4e40-a637-78ea126c1a76/attribute/f2ab111d-dbad-4440-b930-2c95e145fc42" } ] }, { "uuid": "739715f7-53ac-4319-a073-147371d17428", "display": "campaign_id: IRS_2019_Tha_Luang_Canton", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c472793e-dbbf-4e40-a637-78ea126c1a76/attribute/739715f7-53ac-4319-a073-147371d17428" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c472793e-dbbf-4e40-a637-78ea126c1a76" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/c472793e-dbbf-4e40-a637-78ea126c1a76?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "KoKutFocus1", "uuid": "d43168fc-4b80-4883-8595-5958022dcef0", "teamName": "KoKutFocus1", "teamIdentifier": "kkf1", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "f00282d8-b55b-4005-b113-a0a9265f4684", "display": "KLONG NAM SAI - Ko Kut Focus 1", "name": "KLONG NAM SAI - Ko Kut Focus 1", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": "Trat", "country": "Thailand", "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": "Ko Kut", "address3": null, "address4": "Ko Kut 1", "address5": null, "address6": null, "tags": [ { "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f", "display": "Operational Area", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f" } ] } ], "parentLocation": { "uuid": "9edf4bb2-b2c9-4e1c-bdc8-3b8c63d82123", "display": "Ko Kut Village", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9edf4bb2-b2c9-4e1c-bdc8-3b8c63d82123" } ] }, "childLocations": [], "retired": false, "attributes": [ { "uuid": "d8821b67-7d70-4fa1-8cb9-74a9d9a6a718", "display": "mspray_location_id: 5f47b1b1-9910-4877-a4d4-63d3af864616", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f00282d8-b55b-4005-b113-a0a9265f4684/attribute/d8821b67-7d70-4fa1-8cb9-74a9d9a6a718" } ] }, { "uuid": "a657037a-90b9-4341-9647-20d6386319ad", "display": "team_id: d43168fc-4b80-4883-8595-5958022dcef0", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f00282d8-b55b-4005-b113-a0a9265f4684/attribute/a657037a-90b9-4341-9647-20d6386319ad" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f00282d8-b55b-4005-b113-a0a9265f4684" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f00282d8-b55b-4005-b113-a0a9265f4684?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "KoKutFocus2", "uuid": "7421173d-4863-4409-8759-0db3135dda80", "teamName": "KoKutFocus2", "teamIdentifier": "kkf2", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "68febcd4-94f4-4a06-a199-7a747a19de41", "display": "AO-SALAD-PHA-Ko-Kut-Focus-2", "name": "AO-SALAD-PHA-Ko-Kut-Focus-2", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": "Trat", "country": "Thailand", "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": "Ko Kut", "address3": null, "address4": "AO SALAD PHA Focus 2", "address5": null, "address6": null, "tags": [ { "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f", "display": "Operational Area", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f" } ] } ], "parentLocation": { "uuid": "9edf4bb2-b2c9-4e1c-bdc8-3b8c63d82123", "display": "Ko Kut Village", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9edf4bb2-b2c9-4e1c-bdc8-3b8c63d82123" } ] }, "childLocations": [], "retired": false, "attributes": [ { "uuid": "93fc07d0-2251-4de9-b3d0-d31023970d29", "display": "mspray_location_id: d63c5209-fb63-4ac9-a845-fe0c80c286d4", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/68febcd4-94f4-4a06-a199-7a747a19de41/attribute/93fc07d0-2251-4de9-b3d0-d31023970d29" } ] }, { "uuid": "83f93e27-f9ad-4a9e-ae17-a330ac3a15a3", "display": "team_id: 7421173d-4863-4409-8759-0db3135dda80", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/68febcd4-94f4-4a06-a199-7a747a19de41/attribute/83f93e27-f9ad-4a9e-ae17-a330ac3a15a3" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/68febcd4-94f4-4a06-a199-7a747a19de41" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/68febcd4-94f4-4a06-a199-7a747a19de41?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "Takang Village", "uuid": "925cfd01-218c-467f-8e64-494a34c51654", "teamName": "Takang Village", "teamIdentifier": "takangVillage", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "34c0ec49-f8c7-404e-8c0e-e390d9081d28", "display": "Ban Taeng Village", "name": "Ban Taeng Village", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": "Trat", "country": "Thailand", "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": "Mueng Trat District", "address3": null, "address4": "Takang Canton", "address5": null, "address6": null, "tags": [ { "uuid": "55a54fc4-a6f2-4e14-9132-815687952804", "display": "Village", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804" } ] } ], "parentLocation": { "uuid": "375f1ffe-26ef-4fde-964f-2d555c26c03f", "display": "Takang Canton", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/375f1ffe-26ef-4fde-964f-2d555c26c03f" } ] }, "childLocations": [ { "uuid": "08c59ca6-c39a-4575-9cfe-30ae54d6d154", "display": "Ban Chamrak Mu", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/08c59ca6-c39a-4575-9cfe-30ae54d6d154" } ] } ], "retired": false, "attributes": [ { "uuid": "47c4ed35-f0de-4f96-a3e5-a8018d1e8593", "display": "mspray_location_id: 3a48eba7-f5d4-47fe-a905-abd84391d9d1", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/34c0ec49-f8c7-404e-8c0e-e390d9081d28/attribute/47c4ed35-f0de-4f96-a3e5-a8018d1e8593" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/34c0ec49-f8c7-404e-8c0e-e390d9081d28" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/34c0ec49-f8c7-404e-8c0e-e390d9081d28?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "Laem Klat Village", "uuid": "5ed2cb8d-8400-4061-a037-511d29557e99", "teamName": "Laem Klat Village", "teamIdentifier": "LaemKlatVillage", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "d2dcfcfd-d2f6-4d82-b098-bc37f3f23470", "display": "Laem Klat Village", "name": "Laem Klat Village", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": "Trat", "country": "Thailand", "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": "Mueng Trat District", "address3": null, "address4": "Laem Klat Canton", "address5": "Laem Klat Village", "address6": null, "tags": [ { "uuid": "55a54fc4-a6f2-4e14-9132-815687952804", "display": "Village", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804" } ] } ], "parentLocation": { "uuid": "55b3fe53-d0ee-40ff-b6a9-fc77847c9382", "display": "Laem Klat Canton", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/55b3fe53-d0ee-40ff-b6a9-fc77847c9382" } ] }, "childLocations": [ { "uuid": "6f209f8e-f3dd-415d-9212-b09b2ea91e8c", "display": "Ban Tha Sen Mu 8", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6f209f8e-f3dd-415d-9212-b09b2ea91e8c" } ] } ], "retired": false, "attributes": [ { "uuid": "64f51b27-c912-4fa1-9fb3-0ef3b8f8491f", "display": "mspray_location_id: 3eaf2485-7c21-4d76-b153-79b9071f0e61", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d2dcfcfd-d2f6-4d82-b098-bc37f3f23470/attribute/64f51b27-c912-4fa1-9fb3-0ef3b8f8491f" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d2dcfcfd-d2f6-4d82-b098-bc37f3f23470" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/d2dcfcfd-d2f6-4d82-b098-bc37f3f23470?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "Ubon Na Chaluai", "uuid": "fd8db45f-f73b-483c-a0c8-80926a27f1b6", "teamName": "Ubon Na Chaluai", "teamIdentifier": "chaluai", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "fa69544e-da48-428c-ac73-123a4525f1b3", "display": "Ban Khok Yai Mu 5 Village", "name": "Ban Khok Yai Mu 5 Village", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": "Ubon Ratchathani", "country": "Thailand", "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": "Na Chaluai District", "address3": null, "address4": "Na Chaluai Canton", "address5": "Ban Khok Yai Mu 5 Village", "address6": null, "tags": [ { "uuid": "55a54fc4-a6f2-4e14-9132-815687952804", "display": "Village", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804" } ] } ], "parentLocation": { "uuid": "7c624a18-1aa2-4171-8878-868bd750ac1e", "display": "Na Chaluai Canton", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/7c624a18-1aa2-4171-8878-868bd750ac1e" } ] }, "childLocations": [ { "uuid": "de53fdf1-8193-4029-9d95-1753cdeaa0e7", "display": "Ban Khok Yai Mu 5 Focus 1", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/de53fdf1-8193-4029-9d95-1753cdeaa0e7" } ] } ], "retired": false, "attributes": [ { "uuid": "47d722d5-2a5b-40de-b290-3c510d027efe", "display": "mspray_location_id: 89040cb4-c01c-46ce-a3a5-88efa9f7f036", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fa69544e-da48-428c-ac73-123a4525f1b3/attribute/47d722d5-2a5b-40de-b290-3c510d027efe" } ] }, { "uuid": "1f291c69-f11f-43e3-b0fe-7c5ddb6b62aa", "display": "team_id: fd8db45f-f73b-483c-a0c8-80926a27f1b6", "voided": true, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fa69544e-da48-428c-ac73-123a4525f1b3/attribute/1f291c69-f11f-43e3-b0fe-7c5ddb6b62aa" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fa69544e-da48-428c-ac73-123a4525f1b3" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/fa69544e-da48-428c-ac73-123a4525f1b3?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "Kham Bak", "uuid": "427dce82-8db2-4cc8-9d3d-28d5fc4df927", "teamName": "Kham Bak", "teamIdentifier": "khambak", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "b8115047-e267-46ee-b0a7-5e92a99838d0", "display": "Ban Kham bak Focus 1", "name": "Ban Kham bak Focus 1", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": "Ubon Ratchathani", "country": "Thailand", "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": "Buntharik District", "address3": "Ban Kham bak Focus 1", "address4": "Huai Kha", "address5": "Khambak Village", "address6": null, "tags": [ { "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f", "display": "Operational Area", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f" } ] } ], "parentLocation": { "uuid": "1047b147-8e88-4772-bc7d-be2ef96a58ea", "display": "Ban Kham bak Village", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/1047b147-8e88-4772-bc7d-be2ef96a58ea" } ] }, "childLocations": [], "retired": false, "attributes": [ { "uuid": "3ea586af-7977-4a3f-b21e-043fbd62d7b8", "display": "mspray_location_id: d4b0c760-0711-40bc-b417-9c810184131c", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b8115047-e267-46ee-b0a7-5e92a99838d0/attribute/3ea586af-7977-4a3f-b21e-043fbd62d7b8" } ] }, { "uuid": "0f34570d-9d25-447a-9b96-916d1c730487", "display": "team_id: 427dce82-8db2-4cc8-9d3d-28d5fc4df927", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b8115047-e267-46ee-b0a7-5e92a99838d0/attribute/0f34570d-9d25-447a-9b96-916d1c730487" } ] }, { "uuid": "851d1fff-cac7-4e95-b67d-36d91f25cfdc", "display": "team_id: fd8db45f-f73b-483c-a0c8-80926a27f1b6", "voided": true, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b8115047-e267-46ee-b0a7-5e92a99838d0/attribute/851d1fff-cac7-4e95-b67d-36d91f25cfdc" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b8115047-e267-46ee-b0a7-5e92a99838d0" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b8115047-e267-46ee-b0a7-5e92a99838d0?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "DupLaemKlatVillage", "uuid": "abacad2b-b3ed-490c-a2b6-541923cd0c71", "teamName": "DupLaemKlatVillage", "teamIdentifier": "DupLaemKlatVillage", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "f2d06e85-2414-4272-93c7-ea24ef45a0af", "display": "à¹à¸«à¸¥à¸¡à¸à¸¥à¸±à¸", "name": "à¹à¸«à¸¥à¸¡à¸à¸¥à¸±à¸", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": null, "country": null, "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": null, "address3": null, "address4": null, "address5": null, "address6": null, "tags": [ { "uuid": "55a54fc4-a6f2-4e14-9132-815687952804", "display": "Village", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804" } ] } ], "parentLocation": { "uuid": "55b3fe53-d0ee-40ff-b6a9-fc77847c9382", "display": "Laem Klat Canton", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/55b3fe53-d0ee-40ff-b6a9-fc77847c9382" } ] }, "childLocations": [ { "uuid": "6616ce9d-5b87-4ffe-a453-0768615ec91d", "display": "หมุà¹à¸à¸µà¹ 8", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6616ce9d-5b87-4ffe-a453-0768615ec91d" } ] } ], "retired": false, "attributes": [ { "uuid": "e3aa8dcd-6ce4-48a6-ae45-ef5b90ac9409", "display": "mspray_location_id: caefbbf0-64cd-4427-a3b1-00835477ba8d", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2d06e85-2414-4272-93c7-ea24ef45a0af/attribute/e3aa8dcd-6ce4-48a6-ae45-ef5b90ac9409" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2d06e85-2414-4272-93c7-ea24ef45a0af" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/f2d06e85-2414-4272-93c7-ea24ef45a0af?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "LiamKlat2", "uuid": "080c995e-5e5a-46c8-b9cb-497a82722803", "teamName": "LiamKlat2", "teamIdentifier": "LiamKlat2", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "2b6924ee-4dfd-464b-9002-25df18dd7e6c", "display": "Laem Klat Moo 8", "name": "Laem Klat Moo 8", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": null, "country": null, "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": null, "address3": null, "address4": null, "address5": null, "address6": null, "tags": [ { "uuid": "55a54fc4-a6f2-4e14-9132-815687952804", "display": "Village", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804" } ] } ], "parentLocation": { "uuid": "ce6e7a56-0e30-44a2-a97e-c08d4acf7289", "display": "Laem Klat Canton 2", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/ce6e7a56-0e30-44a2-a97e-c08d4acf7289" } ] }, "childLocations": [ { "uuid": "9e96ec17-3337-4b25-a9a4-0d4b804ade89", "display": "Tha Sen 8", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/9e96ec17-3337-4b25-a9a4-0d4b804ade89" } ] } ], "retired": false, "attributes": [ { "uuid": "d9b6e6f3-e71e-4d2d-bd85-8f15284d8e18", "display": "mspray_location_id: a14c6253-2d3d-4bcc-8c49-35f9e44c66e1", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2b6924ee-4dfd-464b-9002-25df18dd7e6c/attribute/d9b6e6f3-e71e-4d2d-bd85-8f15284d8e18" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2b6924ee-4dfd-464b-9002-25df18dd7e6c" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/2b6924ee-4dfd-464b-9002-25df18dd7e6c?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "TwoDotTwoDotOne", "uuid": "7496604b-b4b9-4b0c-a68c-9a47fc25ad4e", "teamName": "TwoDotTwoDotOne", "teamIdentifier": "TwoDotTwoDotOne", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "4a4f4bc5-6e5c-493d-81f3-baf6943f605d", "display": "TwoTwoOne_01", "name": "TwoTwoOne_01", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": null, "country": null, "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": null, "address3": null, "address4": null, "address5": null, "address6": null, "tags": [ { "uuid": "22abf4d2-c138-463c-8c58-568343dd2b5f", "display": "Operational Area", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/22abf4d2-c138-463c-8c58-568343dd2b5f" } ] } ], "parentLocation": { "uuid": "53abb5fe-2295-4de6-9a6c-4713813ad7d5", "display": "Two Two One Release Village", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/53abb5fe-2295-4de6-9a6c-4713813ad7d5" } ] }, "childLocations": [], "retired": false, "attributes": [ { "uuid": "4b451622-beb5-48cd-a009-d3bb98e324be", "display": "mspray_location_id: 35968df5-f335-44ae-8ae5-25804caa2d86", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/4a4f4bc5-6e5c-493d-81f3-baf6943f605d/attribute/4b451622-beb5-48cd-a009-d3bb98e324be" } ] }, { "uuid": "3c4986dc-1243-45e6-af9d-2c562b8c4f71", "display": "team_id: 7496604b-b4b9-4b0c-a68c-9a47fc25ad4e", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/4a4f4bc5-6e5c-493d-81f3-baf6943f605d/attribute/3c4986dc-1243-45e6-af9d-2c562b8c4f71" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/4a4f4bc5-6e5c-493d-81f3-baf6943f605d" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/4a4f4bc5-6e5c-493d-81f3-baf6943f605d?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" }, { "display": "Two Two Two Release", "uuid": "055059f5-bbc2-489b-a573-56558556b5e0", "teamName": "Two Two Two Release", "teamIdentifier": "TwoTwoTwo", "supervisor": "", "supervisorUuid": "", "supervisorTeam": "", "supervisorTeamUuid": "", "supervisorIdentifier": "", "voided": false, "voidReason": null, "members": 1, "location": { "uuid": "43a992e6-6b73-4767-b63f-abeb16737e27", "display": "Two Two Two Release Village", "name": "Two Two Two Release Village", "description": null, "address1": null, "address2": null, "cityVillage": null, "stateProvince": null, "country": null, "postalCode": null, "latitude": null, "longitude": null, "countyDistrict": null, "address3": null, "address4": null, "address5": null, "address6": null, "tags": [ { "uuid": "55a54fc4-a6f2-4e14-9132-815687952804", "display": "Village", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/locationtag/55a54fc4-a6f2-4e14-9132-815687952804" } ] } ], "parentLocation": { "uuid": "59c7270b-9783-43c5-bec7-4a6716d7c646", "display": "Tha Luang Canton", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/59c7270b-9783-43c5-bec7-4a6716d7c646" } ] }, "childLocations": [ { "uuid": "5398b9e0-71e8-42a5-892d-e031a9a32ca5", "display": "TwoTwoTwo_01", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/5398b9e0-71e8-42a5-892d-e031a9a32ca5" } ] }, { "uuid": "6a537560-fa62-44a7-aaca-5fc1b5c77c54", "display": "TwoTwoTwo_02", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/6a537560-fa62-44a7-aaca-5fc1b5c77c54" } ] }, { "uuid": "af3f0ccb-6c7c-4a8b-9b1e-794f695f77e5", "display": "TwoTwoTwo_03", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/af3f0ccb-6c7c-4a8b-9b1e-794f695f77e5" } ] }, { "uuid": "125fe4d9-a1ef-41f9-9580-d170e49647a2", "display": "TwoTwoTwo_04", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/125fe4d9-a1ef-41f9-9580-d170e49647a2" } ] }, { "uuid": "b636880d-8710-43aa-b821-4af9e6b9e17f", "display": "TwoTwoTwo_90", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/b636880d-8710-43aa-b821-4af9e6b9e17f" } ] } ], "retired": false, "attributes": [ { "uuid": "312c3a70-fcf1-46cf-8cb0-0081c054c11c", "display": "mspray_location_id: 07b09ec1-0589-4a98-9480-4c403ac24d59", "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a992e6-6b73-4767-b63f-abeb16737e27/attribute/312c3a70-fcf1-46cf-8cb0-0081c054c11c" } ] } ], "address7": null, "address8": null, "address9": null, "address10": null, "address11": null, "address12": null, "address13": null, "address14": null, "address15": null, "links": [ { "rel": "self", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a992e6-6b73-4767-b63f-abeb16737e27" }, { "rel": "full", "uri": "http://openmrs.reveal-stage.smartregister.org/openmrs/ws/rest/v1/location/43a992e6-6b73-4767-b63f-abeb16737e27?v=full" } ], "resourceVersion": "2.0" }, "resourceVersion": "1.8" } ] }
POST BaseUrl/team/team
This allows us to post a team to OpenMRS. Note that the response returns the UUID of the team.
Variables:
- teamName - The name of the team
- openmrsLocationUuid - This is the uuid of the OpenMRS location where the team is assigned
- teamIdentifier - This is the identifier of the team
{ "teamName": "${teamName}", "location": "${openmrsLocationUuid}", "teamIdentifier": "${teamIdentifier}", "supervisor": "0" }