The practitioner object contains a record of all available practitioners that belong to a clinic. The API allows you to create and update practitioners. It also allows you to list all practitioners and find individual practitioners.
This resource allows you to list all of a clinic's practitioners.
No arguments
curl "https://api-us-snd.fullscript.io/api/clinic/practitioners" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer XXXXXXXXXXXXXXXXXXXX'Creates a new practitioner
practitioner_type_idstring
Required
Unique Identifier for the Practitioner's Type
emailstring
Required
Unique Email for the Practitioner
first_namestring
Required
Practitioner's first name
last_namestring
Required
Practitioner's last name
metadataobject
Metadata to be attached to the practitioner.
idstring
Your system's unique practitioner identifier.
curl -X 'POST' "https://api-us-snd.fullscript.io/api/clinic/practitioners" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer XXXXXXXXXXXXXXXXXXXX' \
-d $'{
"practitioner_type_id": "string",
"email": "string",
"first_name": "string",
"last_name": "string",
"metadata": {
"id": "string"
}
}'Retrieves an existing practitioner. You need to supply the unique ID for the practitioner.
idstring
Required
Unique ID for the Practitioner
curl "https://api-us-snd.fullscript.io/api/clinic/practitioners/{id}" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer XXXXXXXXXXXXXXXXXXXX'Updates a specific practitioner with the attributes that you pass in. Parameters not provided will remain unchanged.
idstring
Required
Unique Identifier for the Practitioner
emailstring
Unique Email for the Practitioner
first_namestring
Practitioner's first name
last_namestring
Practitioner's last name
metadataobject
Metadata to be attached to the practitioner.
idstring
Your system's unique practitioner identifier.
curl -X 'PATCH' "https://api-us-snd.fullscript.io/api/clinic/practitioners/{id}" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer XXXXXXXXXXXXXXXXXXXX' \
-d $'{
"email": "string",
"first_name": "string",
"last_name": "string",
"metadata": {
"id": "string"
}
}'