AlfaDocs API (1.1.1)

Download OpenAPI specification:Download

Introduction

This API of AlfaDocs is documented using the OpenAPI format. In addition to the OpenAPI syntax, we use a few vendor extensions.

Location

The API is located at https://app.alfadocs.com/api/. SSL is used for transport security.

Authentication

1. API Key Authentication

You need to specify the X-Api-Key field in the request header using the API Key. An API key is related to a certain archive. You create an API Key for your archive inside of AlfaDocs, in Impostazioni -> Studio -> Chiavi API.

2. OAuth2 Authentication

For more secure integration, follow these OAuth2 authentication steps:

Step 1: Authorization Request

Send GET request to /oauth2/authorize with:

  • client_id: YOUR_CLIENT_ID
  • redirect_uri: YOUR_CALLBACK_URL
  • response_type: code
  • scope: requested permissions (e.g., patient:list patient:view)

Step 2: Exchange Code

POST to /oauth2/token with: Content-Type: application/x-www-form-urlencoded

  • grant_type: authorization_code
  • client_id: YOUR_CLIENT_ID
  • client_secret: YOUR_CLIENT_SECRET
  • code: received authorization code
  • redirect_uri: YOUR_CALLBACK_URL

Step 3: Use Token

Add to request headers: Authorization: Bearer YOUR_ACCESS_TOKEN

Step 4: Refresh Token

POST to /oauth2/token with: Content-Type: application/x-www-form-urlencoded

  • grant_type: refresh_token
  • client_id: YOUR_CLIENT_ID
  • client_secret: YOUR_CLIENT_SECRET
  • refresh_token: YOUR_REFRESH_TOKEN

Usage

The API currently does not have a usage limit. However, AlfaDocs reserves the right to limit the API usage and also to ask for a fee related to the API usage.

Feedback

If you discover bugs or you need other API functionalities, just tell us. While doing so, please specify the use case. Generally, feedback is always welcome. Feel free to contact our support.

Accounts

API endpoints for account management

Get accounts

Get a list of accounts. Accounts are related to the transactions.

Authorizations:
apiKeybearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "count": 0,
  • "data": [
    ]
}

Appointment Booking Reasons

Get the list of appointment booking reasons

Get appointment booking reasons

Get the information related to all configured appointment booking reasons.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "count": 0,
  • "data": [
    ]
}

Appointments

API endpoints for appointment management

Get appointments

Get a list of appointments. The default Date filter is from current date to Sunday +14 days. The maximum datetime range is 30 days.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

query Parameters
dateStart
string <Y-m-d>

Start date

dateEnd
string <Y-m-d>

End date

state
string
Enum: "absent" "waiting" "in_care" "done" "cancelled" "confirmed"

Appointment State

patientId
integer

Patient ID

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "count": 0,
  • "data": [
    ]
}

Create an appointment

Create an appointment

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice id

archiveId
required
integer

Archive id

Request Body schema: application/json
date
required
string <date-time>

Appointment's date

patientId
integer

Patient's ID

emailReminder
boolean

Email reminder

smsReminder
boolean

SMS reminder

description
string

Appointment description

allDay
boolean

Is it a full day appointment?

type
string
Enum: "telehealth" "inPractice"

Type of appointment

duration
integer

Duration of the appointment in minutes

state
string

Appointment State

colorId
required
integer

ID of the color for the appointment in the agenda.

chairId
integer

Chair ID of the practice

operatorId
integer

Operator ID

Responses

Request samples

Content type
application/json
{
  • "date": "2020-01-01 00:00:00",
  • "patientId": 69215,
  • "emailReminder": false,
  • "smsReminder": true,
  • "description": "Appointment",
  • "allDay": false,
  • "type": "telehealth",
  • "duration": 30,
  • "state": "string",
  • "colorId": 85665,
  • "chairId": 2285362,
  • "operatorId": 965563
}

Response samples

Content type
application/json
{
  • "status": "success",
  • "data": {
    }
}

Get an appointment

Get the information related to an appointment.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

appointmentId
required
integer

Appointment ID

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "data": {
    }
}

Update an appointment

Update an existing appointment's one or multiple attributes.

Authorizations:
apiKeyoauth2
path Parameters
practiceId
required
integer

Practice id

archiveId
required
integer

Archive id

appointmentId
required
integer

Appointment id

Request Body schema: application/json
date
required
string <date-time>

Appointment's date

patientId
integer

Patient's ID

emailReminder
boolean

Email reminder

smsReminder
boolean

SMS reminder

description
string

Appointment description

allDay
boolean

Is it a full day appointment?

type
string
Enum: "telehealth" "inPractice"

Type of appointment

duration
integer

Duration of the appointment in minutes

state
string

Appointment State

colorId
required
integer

ID of the color for the appointment in the agenda.

chairId
integer

Chair ID of the practice

operatorId
integer

Operator ID

Responses

Request samples

Content type
application/json
{
  • "date": "2020-01-01 00:00:00",
  • "patientId": 69215,
  • "emailReminder": false,
  • "smsReminder": true,
  • "description": "Appointment",
  • "allDay": false,
  • "type": "telehealth",
  • "duration": 30,
  • "state": "string",
  • "colorId": 85665,
  • "chairId": 2285362,
  • "operatorId": 965563
}

Response samples

Content type
application/json
{
  • "status": "success",
  • "data": {
    }
}

Get the Care Plan Entries

Returns the CarePlan Entries related to the given appointment ID.

Authorizations:
apiKeyoauth2
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

appointmentId
required
integer

Appointment ID

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "count": 0,
  • "data": [
    ]
}

Bills

API endpoints for bill management

Get a Bill

Get the information related to a Bill.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

billId
required
integer

Bill ID

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "data": { }
}

Get a filtered list of Bills

Get a filtered list of bills. By default, the list of bills is limited to the last 31 calendar days. You can filter bills using a maximum time range of 31 days.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

query Parameters
dateStart
string <date>
Example: dateStart=2025-01-22

Start date

dateEnd
string <date>
Example: dateEnd=2025-01-22

End date

type
string
Enum: "full" "partial" "credit" "proforma"

Bill Type

direction
string
Enum: "incoming" "outgoing"

Bill direction

carePlanId
integer

Care Plan ID

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "count": 0,
  • "data": [
    ]
}

Bill Liabilities

API endpoints for bill liability management

Get bill liabilities

Get a list of liabilities for a given bill ID.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

billId
required
integer

Bill ID

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "count": 0,
  • "data": [
    ]
}

Delete a bill liability

Delete a bill liability from the given archive.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice id

archiveId
required
integer

Archive id

billId
required
integer

Bill ID

liabilityId
required
integer

Liability id

Responses

Response samples

Content type
application/json
{
  • "error": "Error message"
}

Update a bill liability

Update a bill liability from the given archive.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice id

archiveId
required
integer

Archive id

billId
required
integer

Bill ID

liabilityId
required
integer

Liability id

header Parameters
X-Api-Key
required
string
Example: JcqPcPQ0Cg07vfYatzZPvuJO3ueuaec3

API Key Authentication

Responses

Care Plans

Get the list of the CarePlans

Get a Care Plan

Get a specific Care Plan defined by its ID

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

carePlanId
required
integer

Care Plan ID

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "data": {
    }
}

Get signature status

Returns if the specified CarePlan is signed

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

carePlanId
required
integer

Care Plan ID

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "isSigned": false
}

Chairs

Get the list of the chairs

Get chairs

Get the information related to all configured chairs.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "count": 0,
  • "data": [
    ]
}

Colors

Get the list of colors

Get colors

Get the information related to all configured colors.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "count": 0,
  • "data": [
    ]
}

Context

API endpoints for the context

Get context

Get the practice and archive ID that are related to the given API key.

Authorizations:
apiKey

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "data": { }
}

Custom Object Fields

API endpoints for Custom Object Fields

Get Custom Object Fields

Get the list of all Custom Object Fields. By default, custom fields of all object types (patient, care_plan, etc.) will be returned. You can filter by Object type if you just need the custom field of a specific Object Type.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

query Parameters
objectType
string

Filter by Object Type (f.e. patient or care_plan)

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "count": 0,
  • "data": [
    ]
}

Create Custom Object Field

Create a Custom Object Field.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

Request Body schema: application/json
id
integer

Custom Object Field ID

objectType
string

The object type to which the field is related to (f.e. patient or care_plan).

label
string

The label of the field

technicalName
string

The technical name of the field.

type
string

The type of the field (f.e. single_line_text, single_checkbox, dropdown).

choices
Array of strings

The list of dropdown choices. This is only relevant if type is 'dropdown'.

sequenceNumber
integer
Default: null

The sequence number of the field

Responses

Request samples

Content type
application/json
{
  • "id": 8364,
  • "objectType": "patient",
  • "label": "Person Height",
  • "technicalName": "personHeight",
  • "type": "dropdown",
  • "choices": [
    ],
  • "sequenceNumber": 1
}

Response samples

Content type
application/json
{
  • "status": "success",
  • "data": {
    }
}

Document

API endpoints for document management

Get documents

Retrieves a list of documents for a specified patient, including each document's name, type, creation date, and download URL.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

patientId
required
integer

Patient ID

Responses

Response samples

Content type
application/json
{}

Create a document

Add a new document to the selected patient. You can check the file inside the Patient profile -> Document tab.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice id

archiveId
required
integer

Archive id

patientId
required
integer

Patient ID

Request Body schema: application/json
base64Data
required
string

base64 encoded file data

type
required
string
Enum: "text" "xray" "image" "identification" "electronic_signature_patient_details" "electronic_signature_patient_details_and_terms_and_conditions" "other"

File type

name
required
string

File name

folderName
required
string

Folder name where the document it's going to be

Responses

Request samples

Content type
application/json
{
  • "base64Data": "string",
  • "type": "text",
  • "name": "string",
  • "folderName": "string"
}

Response samples

Content type
application/json
{}

Get document's information

Retrieve the information of the selected document. The information includes the name, type, creation date and download URL.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

patientId
required
integer

Patient ID

documentId
required
integer

Document ID

Responses

Response samples

Content type
application/json
{}

Download a document's content

Triggers the download of a specific document's content for a patient, providing direct access to the document's binary file.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

patientId
required
integer

Patient ID

documentId
required
integer

Document ID

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "file": "string"
}

Free Slots

Get available free slots to set an appointment.

Get free slots

Get a list of free slots available for a duration of time starting from the startDate.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

startDate
required
string <date-time>

Start date

query Parameters
endDate
string <date-time>

End date

duration
required
integer

Slot duration (in minutes)

operatorIds
Array of integers
Example: operatorIds=1,2,3,4

Operator's ID

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "count": 0,
  • "data": [
    ]
}

Marketplace Apps

Endpoints for managing marketplace app integrations.

Set the status of the marketplace app integration for a practice

Sets the status of the marketplace app integration for a practice after the user has authorized the app.

Authorizations:
oauth2
path Parameters
practiceId
required
integer

Practice id

archiveId
required
integer

Archive id

Request Body schema: application/json
status
required
string <string>
Enum: "success" "failure"

The status of app integration

Responses

Request samples

Content type
application/json
{
  • "status": "success"
}

Response samples

Content type
application/json
{
  • "status": "string",
  • "data": [
    ]
}

Update the UI elements for a practice and a marketplace app

Updates the UI elements for a practice and a marketplace app after the user finished the integration.

Authorizations:
oauth2
path Parameters
practiceId
required
integer

Practice id

archiveId
required
integer

Archive id

UIElementName
required
string

UIElement Name

Responses

Response samples

Content type
application/json
{
  • "error": "invalid_request",
  • "error_description": "The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed."
}

Create or Update the UI elements for a marketplace app

Updates the UI elements for a marketplace app after the user finished the integration.

Authorizations:
oauth2
path Parameters
practiceId
required
integer

Practice id

archiveId
required
integer

Archive id

UIElementName
required
string

UIElement Name

Request Body schema: application/json
Array of objects (UIElementRequestBodyItem)

Responses

Request samples

Content type
application/json
{
  • "data": [
    ]
}

Response samples

Content type
application/json
{
  • "status": "string",
  • "data": [
    ]
}

OAuth2 Authentication

Endpoints for OAuth2 authentication, including authorization and token exchange.

Obtain OAuth2 Authorization Code

Redirects the user for authentication and consent, then provides an authorization code to the client application.

query Parameters
client_id
required
string

The client ID of the application requesting access

redirect_uri
required
string <url>

The URL to redirect the user after authorization

response_type
required
string
Default: "code"

The type of response requested (e.g., 'code')

scope
string

A space-separated list of scopes the client is requesting

Responses

Response samples

Content type
application/json
{
  • "error": "invalid_request",
  • "error_description": "The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed."
}

Obtain Access and Refresh Tokens

Handles token exchange for authorization code and refresh token grant types.

Request Body schema: application/x-www-form-urlencoded

Token request payload for both grant types

grant_type
required
string

Specifies the OAuth 2.0 grant type: 'authorization_code' for exchanging auth codes for tokens, or 'refresh_token' for obtaining new access tokens without re-authentication.

client_id
required
string

The client ID of the application.

client_secret
required
string

The client secret of the application.

code
string or null

The authorization code issued by the authorization server. Required for the authorization code flow.

redirect_uri
string or null

The redirect URI associated with the authorization code. Required for the authorization code flow.

refresh_token
string or null

The refresh token to obtain a new access token. Required for the refresh token flow.

scope
string or null

Optional space-separated scopes to request. Should be a subset of the original scopes.

Responses

Response samples

Content type
application/json
{
  • "token_type": "Bearer",
  • "expires_in": 3600,
  • "access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6I...",
  • "refresh_token": "def50200d1c8d7iLCJhbGciOiJSUzI1NiIsImp0aSI6I..."
}

Operators

Get the list of operators

Get operators

Get the information related to all configured operators.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

query Parameters
ignoreDeleted
boolean
Example: ignoreDeleted=true

To ignore deleted operators otherwise deleted operators will be included

italianFiscalCode
string

filter Operator by italianFiscalCode

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "count": 0,
  • "data": [
    ]
}

Patients

API endpoints for patient management

Get patients

By passing in the appropriate options, you can search for available patients in the system. Custom fields have an underscore as prefix

Authorizations:
apiKeyoauth2
path Parameters
practiceId
required
integer

Practice id

archiveId
required
integer

Archive id

query Parameters
phoneNumberPrefix
string <0039>

Phone number prefix

phoneNumber
string <1112233444>

Phone number

italianFiscalCode
string
Example: italianFiscalCode=RSSMRA85T10A562S

To filter patients by italianFiscalCode

offset
integer

Offset to move the result window forward

limit
integer

Number of results in response

firstName
string

First Name

lastName
string

Last Name

email
string

Email

dateBirth
string
Example: dateBirth=1989-10-11

Date of Birth

Responses

Response samples

Content type
application/json
{
  • "links": { },
  • "total": 1,
  • "offset": 0,
  • "limit": 100,
  • "results": [
    ]
}

Create a patient

Adds a new patient to the system. You can also add the custom patient fields that you defined on Gestione -> Pazienti -> Impostazioni Paziente by just putting the technical name and the value on the body.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice id

archiveId
required
integer

Archive id

Request Body schema: application/json
firstName
required
string

Patient first name

lastName
required
string

Patient last name

email
string

Patient last name

emailEnabled
boolean

If the patient has email sending enabled

gender
string
Enum: "m" "f"

Gender of the patient

street
string

Street address of the patient

city
string

City of the patient

postcode
string

Zip code of the patient

province
string

Province of the patient

dateOfBirth
string

Date of birth of the patient

placeOfBirth
string

City of birth

italianFiscalCode
string

Italian fiscal code

job
string

Software Engineer

yearlyNumberingYear
string

Yearly numbering year

yearlyNumberingNumber
integer

Yearly numbering number

defaultDiscount
integer

Default percentage of discount

sourceId
integer

ID of the patient's source. You can customize the sources available in the Impostazioni -> Studio -> Fonte Pazienti

priceListId
integer

Price list ID. You can find the price lists in the Impostazioni -> Studio -> Prestazioni -> Listini menu

emailReminderPossible
boolean

Is possible to send emails reminders to the patient?

smsReminderPossible
boolean

Is possible to send SMS reminders to the patient?

createdAt
string <date-time>

Creation date

documentSignatureEmailPossible
boolean

Is possible to send documents requesting signature?

lastModifiedAt
string <date-time>

Last modified date

_sampleCustomField
string <string>

The custom field value

Array of objects (PhoneNumberNewItem)

List of phone numbers

Responses

Request samples

Content type
application/json
{
  • "firstName": "string",
  • "lastName": "string",
  • "email": "string",
  • "emailEnabled": true,
  • "gender": "m",
  • "street": "Via Albertazzi 1",
  • "city": "Milano",
  • "postcode": "20100",
  • "province": "MI",
  • "dateOfBirth": "1989-10-11",
  • "placeOfBirth": "Milano",
  • "italianFiscalCode": "RSSMRA85T10A562S",
  • "job": "string",
  • "yearlyNumberingYear": "2018",
  • "yearlyNumberingNumber": "2018",
  • "defaultDiscount": 20,
  • "sourceId": 283,
  • "priceListId": 283,
  • "emailReminderPossible": "true",
  • "smsReminderPossible": "true",
  • "createdAt": "2018-04-01 00:00:00",
  • "documentSignatureEmailPossible": "true",
  • "lastModifiedAt": "2022-06-17 00:00:00",
  • "_sampleCustomField": "string",
  • "phoneNumbers": [
    ]
}

Response samples

Content type
application/json
{
  • "status": "success",
  • "data": {
    }
}

Get a patient

Get patient info. It also works for deleted patients, but returns only some data. The endpoint will also return the custom patient field values. These custom fields have an underscore as prefix

Authorizations:
apiKeyoauth2
path Parameters
patientId
required
integer

Patient id

practiceId
required
integer

Practice id

archiveId
required
integer

Archive id

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "data": {
    }
}

Delete a patient

Delete a patient from the given archive.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice id

patientId
required
integer

Patient id

archiveId
required
integer

Archive id

Responses

Update a patient

Update an existing patient from the archive. You can also update custom fields that you defined in Gestione -> Pazienti -> Impostazioni Paziente by using the technical name with an underscore as prefix.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice id

patientId
required
integer

Patient id

archiveId
required
integer

Archive id

Request Body schema: application/json
firstName
required
string

Patient first name

lastName
required
string

Patient last name

email
string

Patient last name

emailEnabled
boolean

If the patient has email sending enabled

gender
string
Enum: "m" "f"

Gender of the patient

street
string

Street address of the patient

city
string

City of the patient

postcode
string

Zip code of the patient

province
string

Province of the patient

dateOfBirth
string

Date of birth of the patient

placeOfBirth
string

City of birth

italianFiscalCode
string

Italian fiscal code

job
string

Software Engineer

yearlyNumberingYear
string

Yearly numbering year

yearlyNumberingNumber
integer

Yearly numbering number

defaultDiscount
integer

Default percentage of discount

sourceId
integer

ID of the patient's source. You can customize the sources available in the Impostazioni -> Studio -> Fonte Pazienti

priceListId
integer

Price list ID. You can find the price lists in the Impostazioni -> Studio -> Prestazioni -> Listini menu

emailReminderPossible
boolean

Is possible to send emails reminders to the patient?

smsReminderPossible
boolean

Is possible to send SMS reminders to the patient?

createdAt
string <date-time>

Creation date

documentSignatureEmailPossible
boolean

Is possible to send documents requesting signature?

lastModifiedAt
string <date-time>

Last modified date

_sampleCustomField
string <string>

The custom field value

Array of objects (PhoneNumberNewItem)

List of phone numbers

Responses

Request samples

Content type
application/json
{
  • "firstName": "string",
  • "lastName": "string",
  • "email": "string",
  • "emailEnabled": true,
  • "gender": "m",
  • "street": "Via Albertazzi 1",
  • "city": "Milano",
  • "postcode": "20100",
  • "province": "MI",
  • "dateOfBirth": "1989-10-11",
  • "placeOfBirth": "Milano",
  • "italianFiscalCode": "RSSMRA85T10A562S",
  • "job": "string",
  • "yearlyNumberingYear": "2018",
  • "yearlyNumberingNumber": "2018",
  • "defaultDiscount": 20,
  • "sourceId": 283,
  • "priceListId": 283,
  • "emailReminderPossible": "true",
  • "smsReminderPossible": "true",
  • "createdAt": "2018-04-01 00:00:00",
  • "documentSignatureEmailPossible": "true",
  • "lastModifiedAt": "2022-06-17 00:00:00",
  • "_sampleCustomField": "string",
  • "phoneNumbers": [
    ]
}

Response samples

Content type
application/json
{
  • "status": "success",
  • "data": {
    }
}

Update a patients custom field

Update an existing patient custom field from the archive. You can also update custom fields that you defined in Gestione -> Pazienti -> Impostazioni Paziente by using the technical name with an underscore as prefix.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice id

archiveId
required
integer

Archive id

patientId
required
integer

Patient id

Request Body schema: application/json
Array of objects (PatientCustomFieldItem)

Responses

Request samples

Content type
application/json
{
  • "data": [
    ]
}

Response samples

Content type
application/json
{
  • "status": "string"
}

Phone Numbers

API endpoints for patient's phone numbers management

Get patient's phone numbers

Get all the related phone numbers of an specific patient.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice id

archiveId
required
integer

Archive id

patientId
required
integer

Patient id

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "count": 0,
  • "data": [
    ]
}

Create a patient's phone number

Add a new phone number to an existing patient

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice id

archiveId
required
integer

Archive id

patientId
required
integer

Patient id

Request Body schema: application/json
prefix
required
string

Country prefix

number
required
string

Number without country prefix

label
string

Label

smsEnabled
boolean

Is this number available for SMS?

Responses

Request samples

Content type
application/json
{
  • "prefix": "+39",
  • "number": "3471234567",
  • "label": "Cellulare",
  • "smsEnabled": true
}

Response samples

Content type
application/json
{
  • "status": "success",
  • "data": {
    }
}

Get specific patient's phone number

Get an specific phone number of a patient.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice id

archiveId
required
integer

Archive id

patientId
required
integer

Patient id

phoneNumberId
required
integer

Phone number id

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "data": {
    }
}

Update an specific patient's phone number

Modify an specific phone number from a patient

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice id

archiveId
required
integer

Archive id

patientId
required
integer

Patient id

phoneNumberId
required
integer

Phone number id

Request Body schema: application/json
prefix
required
string

Country prefix

number
required
string

Number without country prefix

label
string

Label

smsEnabled
boolean

Is this number available for SMS?

Responses

Request samples

Content type
application/json
{
  • "prefix": "+39",
  • "number": "3471234567",
  • "label": "Cellulare",
  • "smsEnabled": true
}

Response samples

Content type
application/json
{
  • "status": "success",
  • "data": {
    }
}

Payment Types

API endpoints for payment type management

Get payment types

Get the information related to all payment types.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "count": 0,
  • "data": [
    ]
}

Practices

API endpoints for practice management

Get practice

Get the information related to the practice.

Authorizations:
apiKey
path Parameters
practiceId
required
integer

Practice ID

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "data": { }
}

Specialties

Get the list of specialties

Get specialties

Get the information related to all configured specialties.

Authorizations:
apiKeyoauth2bearerAuth
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "count": 0,
  • "data": [
    ]
}

Transactions

API endpoints for transaction management

Get a filtered list of undeleted transactions

Get a filtered list of undeleted transactions. By default, the list of transaction is limited to the last 31 calendar days. You can filter transactions using a maximum time range of 31 days.

Authorizations:
apiKey
path Parameters
practiceId
required
integer

Practice ID

archiveId
required
integer

Archive ID

query Parameters
dateStart
string <date-time>

Start date

dateEnd
string <date-time>

End date

direction
string
Enum: "incoming" "outgoing"

Transaction direction

billId
integer

Bill ID

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "count": 0,
  • "data": [
    ]
}

Create a Transaction

Create an transaction. If the transaction is related to a bill, the billId parameter is required. If you are dealing with a bill liability, please remember to delete the bill liability after the transaction is created.

Authorizations:
apiKeyoauth2
path Parameters
practiceId
required
integer

Practice id

archiveId
required
integer

Archive id

Request Body schema: application/json
amount
required
number

Amount of transaction

date
required
string <date>

Transaction's date

direction
required
string <string>
Enum: "incoming" "outgoing"

Transaction's direction

billId
integer

Bill's ID

accountId
required
integer

Account ID.

paymentTypeId
required
integer

Payment type ID

relatedToInsurance
boolean

Trasaction related to a insurance

sistemaTsExpenseType
required
string
Enum: "tk" "tk2" "fc" "fv" "sp" "ad" "as" "sr" "sr2" "ct" "pi" "ic" "aa" "nn"

Sistema TS type

Responses

Request samples

Content type
application/json
{
  • "amount": 23.12,
  • "date": "2020-01-01",
  • "direction": "incoming",
  • "billId": 69215,
  • "accountId": 85665,
  • "paymentTypeId": 2285362,
  • "relatedToInsurance": false,
  • "sistemaTsExpenseType": "tk"
}

Response samples

Content type
application/json
{
  • "status": "success",
  • "data": {
    }
}

Care Plan Entries

Care Plan Entries

Get a care plan entry

Get a care plan entry

Authorizations:
apiKeyoauth2
path Parameters
practiceId
required
integer
archiveId
required
integer
carePlanId
required
integer
carePlanEntryId
required
integer

Responses

Response samples

Content type
application/json
{
  • "status": "success",
  • "data": {
    }
}