List All Active Insurer Clients
GEThttps://api.health.curacel.co/api/v1/clients
Get list of active insurer clients. Note: This feature is only available to HMOs/Insurers.
Request
Query Parameters
page integer
The presence of this param would return results in paginated format Better used together with the 'per_page' param
This is used to indicate the offset from which results are fetched in paginated format.
per_page integer
Better used together with the 'page' param
This is used to indicate the how many results are to be in an offset for pagination.
Responses
- 200
- 401
- 403
- 404
Success
- application/json
- Schema
- Example (from schema)
Schema
page integer
per_page integer
total integer
data object[]
{
"page": 0,
"per_page": 0,
"total": 0,
"data": [
{
"id": 0,
"name": "string",
"address": "string",
"phone": "string",
"email": "string",
"is_active": 1,
"valid_until": "string"
}
]
}
Unauthenticated
Forbidden
Not Found
Authorization: http
name: bearerAuthtype: httpscheme: bearerbearerFormat: API KEY from your account dashboard
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://api.health.curacel.co/api/v1/clients' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
ResponseClear