v.1
OA ITSD
The following document describe the RESTful API of the employee phone directory.
https://phone-directory-api.mo.gov/data_api/employeedirectory/
This resource represents an employee phone number.
https://phone-directory-api.mo.gov/data_api/employeedirectory/search/
https://phone-directory-api.mo.gov/data_api/employeedirectory/search/firstname/{firstName}
{
"firstName": "JOHN",
"lastName": "DOE",
"agency": "OFFICE ADMINISTRATION-OPER",
"phoneNumber": "573-751-9999"
}
The data returned when there is an employee matching the parameter provided.
https://phone-directory-api.mo.gov/data_api/employeedirectory/search/lastname/{lastName}
{
"firstName": "JOHN",
"lastName": "DOE",
"agency": "OFFICE ADMINISTRATION-OPER",
"phoneNumber": "573-751-9999"
}
The data returned when there is an employee matching the parameter provided.
https://phone-directory-api.mo.gov/data_api/employeedirectory/search/phoneNumber/{phoneNumber}
{
"firstName": "JOHN",
"lastName": "DOE",
"agency": "OFFICE ADMINISTRATION-OPER",
"phoneNumber": "573-751-9999"
}
The data returned when there is an employee phone number ends with the parameter provided.