GET
/
providers
curl --request GET \
  --url https://api.usecobalt.com/v1/providers \
  --header 'access_token: <api-key>' \
  --header 'client_id: <api-key>' \
  --header 'client_secret: <api-key>'
{
  "success": true,
  "providers": [
    {
      "provider_ehr_id": "<string>",
      "provider_name": "<string>"
    }
  ]
}

Example Request

curl -X GET https://api.usecobalt.com/v1/providers \
-H 'Content-Type: application/json' \
-H 'client_id: ci_live_198908HJDKJSH98789OHKJL' \
-H 'client_secret: cs_live_9827hofdsklOYYHJLJh' \
-H 'access_token: 493JKLHIU98789hLKH9HHJH'

Example Response

{
    "success": true,
    "providers": [
        {
            "provider_ehr_id": "349823",
            "provider_name": "Dr Jane Doe"
        }
    ]
}

Authorizations

client_id
string
header
required
client_secret
string
header
required
access_token
string
header
required

Response

200 - application/json
Successful response
success
boolean
providers
object[]