Identify Facility/Community levels in org hierarchy

identify_levels(
  ou = NULL,
  username,
  password,
  baseurl = "https://final.datim.org/"
)

Arguments

ou

operating unit name

username

DATIM username

password

DATIM password, recommend using mypwd()

baseurl

base API url, default = https://final.datim.org/

Examples

if (FALSE) {
 #table for all OUs
  myuser <- "UserX"
  identify_levels(username = myuser, password = mypwd())
 #table for just Kenya
   identify_levels("Kenya", username = myuser, password = mypwd()) }