GET
/
authorized-providers
Get Authorized Providers
curl --request GET \
  --url https://api.develophealth.ai/authorized-providers \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "data": [
    {
      "npi": "1234567890",
      "first_name": "John",
      "last_name": "Doe",
      "email": "[email protected]",
      "signed_at": "2024-01-15T10:30:00+00:00"
    },
    {
      "npi": 987654321,
      "first_name": "Jane",
      "last_name": "Smith",
      "email": "[email protected]"
    }
  ]
}

Overview

Retrieve all authorized providers for the organization. Returns a list of providers that have been authorized or are pending authorization.
  • Providers with signed_at=null are pending authorization (they haven’t signed the form yet)
  • Providers with signed_at populated have completed the authorization process

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successfully retrieved authorized providers

The response is of type object.