Skip to main content
POST
/
provider
/
authorize
Authorize Provider
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>",
  "fax_number": "<string>",
  "phone_number": "<string>",
  "address": {
    "street": "<string>",
    "street_line_2": "<string>",
    "city": "<string>",
    "state_province": "<string>",
    "zip_postal_code": "<string>",
    "country": "<string>"
  }
}
'
{
  "status": "success"
}

Documentation Index

Fetch the complete documentation index at: https://docs.develophealth.ai/llms.txt

Use this file to discover all available pages before exploring further.

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

The email of the provider.

fax_number
string

The provider's fax number.

phone_number
string

The provider's phone number.

address
Address · object

The provider's practice address.

Response

Successful initiation of provider authorization

status
default:success
Available options:
success
error
ApiError · object
data
any