Skip to main content
GET
/
api
/
v1
/
prescribers
/
credentials
Get all available credentials
curl --request GET \
  --url https://api.byblend.com/api/v1/prescribers/credentials \
  --header 'Authorization: Bearer <token>'
[
  {
    "credential_code": "MD",
    "credential_name": "Doctor of Medicine"
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful response with list of credentials

credential_code
string
Example:

"MD"

credential_name
string
Example:

"Doctor of Medicine"

I