curl --request GET \
--url https://app.enzo.health/api/v1/organizations \
--header 'Authorization: Bearer <token>'
{
"organizations": [
{
"id": "<string>",
"name": "<string>",
"icon": "<string>",
"plan": "<string>"
}
]
}
curl --request GET \
--url https://app.enzo.health/api/v1/organizations \
--header 'Authorization: Bearer <token>'
{
"organizations": [
{
"id": "<string>",
"name": "<string>",
"icon": "<string>",
"plan": "<string>"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successful response
The response is of type object
.