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