Retrieves a list of medical conditions, including custom and standard medical conditions.

https://api.oauth.pabau.com/{api_key}/medical-conditions
Request
Query Parameters: | |
api_key * | |
type* |
custom: returns only custom medical conditions all: returns both standard and custom medical conditions |
per_page | (int) Number of records per page. Default 20, maximum 50 |
page | (int) Page number. If not provided will return the first fetched |
order | ASC or DESC. Default DESC |
search | Filters medical conditions by searching for a specific condition name. |
Response sample
application/json
{
"status":true,
"total":4,
"medical_conditions":[
{
"id":1,
"icd_code":null,
"condition_name":"Mild asthma",
"is_custom":1
},
{
"id":2,
"icd_code":null,
"condition_name":"ADHD, mild asthma ",
"is_custom":1
},
{
"id":3,
"icd_code":"XD6UU3",
"condition_name":"Oxygen Concentrators",
"is_custom":0
},
{
"id":4,
"icd_code":"XD4U38",
"condition_name":"General purpose electrocardiographs",
"is_custom":0
}
]
}