POST
/
provider
/
authorize
curl --request POST \
  --url https://api.develophealth.ai/provider/authorize \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "npi": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "email": "<string>"
}'
{
  "status": "success"
}

Overview

This endpoint is used to authorize a provider to be able to submit prior authorizations and benefit verifications on behalf of a provider.

Authorizations

Authorization
string
header
required

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

Body

application/json

Represents a request for authorizing a provider.

npi
string
required

The NPI of the provider.

first_name
string
required

The first name of the provider.

last_name
string
required

The last name of the provider.

email
string
required

The email of the provider.

Response

200
application/json
Successful initiation of provider authorization
status
default:success
Available options:
success
error
object
data
any