Skip to main content
PUT
/
api
/
v1
/
prescribers
/
{prescriber_id}
/
qualifications
/
{qualification_id}
Update a license/qualification
curl --request PUT \
  --url https://api.byblend.com/api/v1/prescribers/{prescriber_id}/qualifications/{qualification_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "state": "CA",
  "license_number": "1234567890",
  "description": "Nurse Practitioner, Family",
  "expiration_date": "2025-03-15",
  "is_active": true
}'
{
  "state": "CA",
  "license_number": "1234567890",
  "description": "Nurse Practitioner, Family",
  "expiration_date": "2025-03-15",
  "is_active": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

prescriber_id
string<uuid>
required

Unique (UUID) identifier for the prescriber

qualification_id
string<uuid>
required

Unique (UUID) identifier for the qualification, or, as a convenience, two-letter state abbreviation

Example:

"OH"

Body

application/json
state
string
required
Example:

"CA"

license_number
string
required

License number for the prescriber in this state. Note that when a state qualification is updated with a new license number, the old qualification will be automatically deactivated.

Example:

"1234567890"

description
string

Description of the license qualification

Example:

"Nurse Practitioner, Family"

expiration_date
string<date>
Example:

"2025-03-15"

is_active
boolean
Example:

true

Response

200 - application/json

License/qualification updated successfully

state
string
required
Example:

"CA"

license_number
string
required

License number for the prescriber in this state. Note that when a state qualification is updated with a new license number, the old qualification will be automatically deactivated.

Example:

"1234567890"

description
string

Description of the license qualification

Example:

"Nurse Practitioner, Family"

expiration_date
string<date>
Example:

"2025-03-15"

is_active
boolean
Example:

true

I