Skip to content

PracSuite API (v1)

This is the official PracSuite API.

It follows standard REST conventions, so you can work with it using any HTTP client and any programming language that can send HTTP requests.

All responses are returned in JSON format.

Download OpenAPI description
Overview
PracSuite API Support
License
Languages
Servers
Production
https://api.pracsuite.com/v1/

Appointment Book

SchemasOperations

Appointment

SchemasOperations

Note

SchemasOperations

Rule Out

SchemasOperations

Group Appointment

SchemasOperations

Group Appointment Member

SchemasOperations

Cancelled Appointment

SchemasOperations

Cancellation Reason

SchemasOperations

Reschedule Reason

SchemasOperations

Appointment Type

SchemasOperations

Appointment Status

SchemasOperations

Available Appointment

You may search for a maximum of 7 days of appointment availability per request.

All availability searches must specify a single appointment_type_id.

Availability may be filtered using any combination of business, practitioner, profession, or resource. When multiple filters are supplied, only times matching all provided criteria will be returned.

PracSuite users define daily practitioner availability using Rosters. Users can apply three availability flags to control which tools can book at particular times:

  • Manual - Allows staff to manually book appointments during these times
  • Online Booking - Allows these times to be booked through the PracSuite online booking system
  • Waiting List - Allows the PracSuite waiting list to offer these times to patients

Use the manual, online, and waiting_list query parameters to filter available times based on these roster flags. If none of these parameters are supplied, only times available for manual bookings will be returned.

Users define default appointment duration rules per Appointment Type. These defaults may vary based on business, profession, practitioner, and client fee category, which is determined by the combination of client_id and account_id.

When available, client_id and account_id should be provided to ensure the correct Appointment Type default configuration is applied.

SchemasOperations

Available Group Appointment

SchemasOperations

Business

SchemasOperations

Fee Category

SchemasOperations

Health Fund

SchemasOperations

Invoice

SchemasOperations

Payment

SchemasOperations

Item

SchemasOperations

Item Group

SchemasOperations

Organisation

SchemasOperations

Patient

SchemasOperations

Patient Account

SchemasOperations

Patient Attachment

SchemasOperations

Patient Contact

SchemasOperations

Clinical Note

Rich text HTML is supported with a safe, limited set of elements and inline styles. Any unsupported tags, attributes, or CSS are removed automatically.

Supported elements

p, br, strong, em, i, u, blockquote, ul, ol, li, div, span, table, thead, tbody, tfoot, tr, td, th, colgroup, col, caption, img (base64 images only)

Images

Images must be embedded as base64 data URIs. Only PNG, JPEG/JPG, GIF, and WebP image types are supported. External image URLs and other formats are not permitted.

Supported inline CSS

Common formatting and table layout styles are allowed, including text styling, alignment, spacing, borders, and table sizing (color, font-size, text-align, padding, width, height, border, etc.). Unsupported styles are removed automatically.

Content limits

Rich text content must be 150,000 characters or less after processing.

Operations

Payer

SchemasOperations

Payer Contact

SchemasOperations

Practitioner

SchemasOperations

Practitioner Provider Number

SchemasOperations

Profession

SchemasOperations

Pronoun

SchemasOperations

Referrer

SchemasOperations

Referrer Type

SchemasOperations

Resource

SchemasOperations

Sex

SchemasOperations

Tag

SchemasOperations

Tag Category

SchemasOperations

Tag Category

linksobject(TagCategoryLinks)
tenant_idinteger
tag_category_idinteger
descriptionstring
is_clinicalboolean
is_patientboolean
archivedboolean
{ "links": { "self": "https://api.pracsuite.com/v1/tag_category/1", "tags": "https://api.pracsuite.com/v1/tag_category/1/tag" }, "tenant_id": 0, "tag_category_id": 0, "description": "string", "is_clinical": true, "is_patient": true, "archived": true }

List Tag Categories

Request

Security
x-api-key and a-api-key
Query
pageinteger>= 1
Example: page=1
page_sizeinteger[ 1 .. 200 ]
Example: page_size=50
sort_byArray of strings

Comma separated search fields. See Sorting

Example: sort_by=["tag_category_id","description"]
q[]Array of strings

Filter result by one or more fields.

See Query Filtering

Available filters:

ValueFormat
descriptionstring
is_patientboolean
is_clinicalboolean
archivedboolean
curl -i -X GET \
  'https://api.pracsuite.com/v1/tag_category?page=1&page_size=50&sort_by=%5B%22tag_category_id%22%2C%22description%22%5D&q%5B%5D=string' \
  -H 'a-api-key: YOUR_API_KEY_HERE' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Successful

Bodyapplication/json
tag_categoriesArray of objects(TagCategoryWithMeta)
total_entriesinteger
linksobject
Response
application/json
{ "tag_categories": [ {} ], "total_entries": 0, "links": { "self": "https://api.pracsuite.com/v1/tag_category?page=2", "previous": "https://api.pracsuite.com/v1/tag_category?page=1", "next": "https://api.pracsuite.com/v1/tag_category?page=3" } }

Get Tag Category

Request

Security
x-api-key and a-api-key
Path
tag_category_idintegerrequired
curl -i -X GET \
  'https://api.pracsuite.com/v1/tag_category/{tag_category_id}' \
  -H 'a-api-key: YOUR_API_KEY_HERE' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Successful

Bodyapplication/json
linksobject(TagCategoryLinks)
tenant_idinteger
tag_category_idinteger
descriptionstring
is_clinicalboolean
is_patientboolean
archivedboolean
Response
application/json
{ "links": { "self": "https://api.pracsuite.com/v1/tag_category/1", "tags": "https://api.pracsuite.com/v1/tag_category/1/tag" }, "tenant_id": 0, "tag_category_id": 0, "description": "string", "is_clinical": true, "is_patient": true, "archived": true }