Query Parameters
The offset for pagination.
Example:
0
The maximum number of records to return.
Example:
100
Response
A list of care teams
The response is of type object
.
curl --request GET \
--url https://api.axlehealth.com/api/v2-stable/care-teams
{
"items": [
{
"care_team_id": "a8af0bfa-98ba-4c57-892f-9123a3c69d7b",
"patients": [
{
"patient_id": "a2b34371-99d2-4e7e-9d05-dc56e168b2aa"
}
],
"clinicians": [
{
"clinician_id": "bfa23251-4e6e-4ddb-9096-171750871787"
}
]
}
],
"pagination": {
"offset": 0,
"count_limit": 25,
"total_records": 1
}
}
curl --request GET \
--url https://api.axlehealth.com/api/v2-stable/care-teams
{
"items": [
{
"care_team_id": "a8af0bfa-98ba-4c57-892f-9123a3c69d7b",
"patients": [
{
"patient_id": "a2b34371-99d2-4e7e-9d05-dc56e168b2aa"
}
],
"clinicians": [
{
"clinician_id": "bfa23251-4e6e-4ddb-9096-171750871787"
}
]
}
],
"pagination": {
"offset": 0,
"count_limit": 25,
"total_records": 1
}
}
The offset for pagination.
0
The maximum number of records to return.
100
A list of care teams
The response is of type object
.