Cliniko API (v1)

This is the official API for Cliniko. Cliniko is a practice management system for healthcare practitioners.

The Cliniko API is based on REST principles. This means you can use any HTTP client and any programming language to interact with the API.

JSON will be returned in all responses from the API.

Download OpenAPI description
Languages
Servers
Production
https://api.au1.cliniko.com/v1/

Appointment Type

Operations

Appointment Type Billable Item

Operations

Appointment Type Product

Operations

Attendee

Operations

Attendee

archived_atstring or null(date-time)
arrivedboolean or null
bookingobject
booking_ip_addressstring or null(ipv4)
Example: "10.0.0.43"
cancellation_notestring or null
cancellation_reasoninteger or null
cancellation_reason_descriptionstring or null
Enum"Feeling Better""Condition Worse""Sick""COVID-19 related""Away""Other""Work"""
cancellation_urlstring or null(uri)
cancelled_atstring or null(date-time)
created_atstring(date-time)
deleted_atstring or null(date-time)
email_reminder_sentboolean or null
idstring(int64)
invoice_statusinteger or null
Enum ValueDescription
10Open
20Paid
30Closed
40Open credit
Enum10203040
invoicesobject
linksobject
notesstring or null
online_booking_policy_acceptedboolean or null
patientobject
patient_caseobject
patient_formsobject
sent_email_reminders_countinteger or null
sent_sms_reminders_countinteger or null
sms_reminder_sentboolean or null
telehealth_urlstring or null(uri)
treatment_note_statusinteger or null
Enum ValueDescription
10Draft
90Final
Enum1090
updated_atstring(date-time)
{ "archived_at": "2019-08-24T14:15:22Z", "arrived": true, "booking": { "links": { "self": "https://api.au1.cliniko.com/v1/bookings/1" } }, "booking_ip_address": "10.0.0.43", "cancellation_note": "string", "cancellation_reason": 0, "cancellation_reason_description": "Feeling Better", "cancellation_url": "http://example.com", "cancelled_at": "2019-08-24T14:15:22Z", "created_at": "2019-08-24T14:15:22Z", "deleted_at": "2019-08-24T14:15:22Z", "email_reminder_sent": true, "id": "string", "invoice_status": 10, "invoices": { "links": { "self": "https://api.au1.cliniko.com/v1/attendees/1/invoices" } }, "links": { "self": "https://api.au1.cliniko.com/v1/attendees/1" }, "notes": "string", "online_booking_policy_accepted": true, "patient": { "links": { "self": "https://api.au1.cliniko.com/v1/patients/1" } }, "patient_case": { "links": { "self": "https://api.au1.cliniko.com/v1/patient_cases/1" } }, "patient_forms": { "links": { "self": "https://api.au1.cliniko.com/v1/attendees/1/patient_forms" } }, "sent_email_reminders_count": 0, "sent_sms_reminders_count": 0, "sms_reminder_sent": true, "telehealth_url": "http://example.com", "treatment_note_status": 10, "updated_at": "2019-08-24T14:15:22Z" }

List attendees

Request

Query
pageinteger
per_pageinteger[ 1 .. 100 ]
sortArray of strings

Comma separated search fields. See: Ordering

Example: sort=created_at:desc
q[]Array of strings
orderstringDeprecated
Enum"asc""desc"
curl -i -X GET \
  -u <username>:<password> \
  'https://api.au1.cliniko.com/v1/attendees?order=asc&page=0&per_page=1&q%5B%5D=string&sort=created_at%3Adesc'

Responses

successful operation

Bodyapplication/json
attendeesArray of objects(Attendee)
total_entriesinteger
Example: 1
linksobject
Response
application/json
{ "attendees": [ { "archived_at": "2019-08-24T14:15:22Z", "arrived": true, "booking": { "links": {} }, "booking_ip_address": "10.0.0.43", "cancellation_note": "string", "cancellation_reason": 0, "cancellation_reason_description": "Feeling Better", "cancellation_url": "http://example.com", "cancelled_at": "2019-08-24T14:15:22Z", "created_at": "2019-08-24T14:15:22Z", "deleted_at": "2019-08-24T14:15:22Z", "email_reminder_sent": true, "id": "string", "invoice_status": 10, "invoices": { "links": {} }, "links": { "self": "https://api.au1.cliniko.com/v1/attendees/1" }, "notes": "string", "online_booking_policy_accepted": true, "patient": { "links": {} }, "patient_case": { "links": {} }, "patient_forms": { "links": {} }, "sent_email_reminders_count": 0, "sent_sms_reminders_count": 0, "sms_reminder_sent": true, "telehealth_url": "http://example.com", "treatment_note_status": 10, "updated_at": "2019-08-24T14:15:22Z" } ], "total_entries": 1, "links": { "self": "https://api.au1.cliniko.com/v1/attendees?page=2", "previous": "https://api.au1.cliniko.com/v1/attendees?page=1", "next": "https://api.au1.cliniko.com/v1/attendees?page=3" } }

Create attendee

Request

Bodyapplication/jsonrequired
booking_idstring(int64)

booking id

Example: "1"
arrivedboolean or null
notesstring or null
patient_idstring(int64)

patient id

Example: "1"
patient_case_idstring(int64)

patient case id

Example: "1"
curl -i -X POST \
  -u <username>:<password> \
  https://api.au1.cliniko.com/v1/attendees \
  -H 'Content-Type: application/json' \
  -d '{
    "booking_id": "1",
    "arrived": true,
    "notes": "string",
    "patient_id": "1",
    "patient_case_id": "1"
  }'

Responses

Resource was created

Bodyapplication/json
archived_atstring or null(date-time)
arrivedboolean or null
bookingobject
booking_ip_addressstring or null(ipv4)
Example: "10.0.0.43"
cancellation_notestring or null
cancellation_reasoninteger or null
cancellation_reason_descriptionstring or null
Enum"Feeling Better""Condition Worse""Sick""COVID-19 related""Away""Other""Work"""
cancellation_urlstring or null(uri)
cancelled_atstring or null(date-time)
created_atstring(date-time)
deleted_atstring or null(date-time)
email_reminder_sentboolean or null
idstring(int64)
invoice_statusinteger or null
Enum ValueDescription
10Open
20Paid
30Closed
40Open credit
Enum10203040
invoicesobject
linksobject
notesstring or null
online_booking_policy_acceptedboolean or null
patientobject
patient_caseobject
patient_formsobject
sent_email_reminders_countinteger or null
sent_sms_reminders_countinteger or null
sms_reminder_sentboolean or null
telehealth_urlstring or null(uri)
treatment_note_statusinteger or null
Enum ValueDescription
10Draft
90Final
Enum1090
updated_atstring(date-time)
Response
application/json
{ "archived_at": "2019-08-24T14:15:22Z", "arrived": true, "booking": { "links": { "self": "https://api.au1.cliniko.com/v1/bookings/1" } }, "booking_ip_address": "10.0.0.43", "cancellation_note": "string", "cancellation_reason": 0, "cancellation_reason_description": "Feeling Better", "cancellation_url": "http://example.com", "cancelled_at": "2019-08-24T14:15:22Z", "created_at": "2019-08-24T14:15:22Z", "deleted_at": "2019-08-24T14:15:22Z", "email_reminder_sent": true, "id": "string", "invoice_status": 10, "invoices": { "links": { "self": "https://api.au1.cliniko.com/v1/attendees/1/invoices" } }, "links": { "self": "https://api.au1.cliniko.com/v1/attendees/1" }, "notes": "string", "online_booking_policy_accepted": true, "patient": { "links": { "self": "https://api.au1.cliniko.com/v1/patients/1" } }, "patient_case": { "links": { "self": "https://api.au1.cliniko.com/v1/patient_cases/1" } }, "patient_forms": { "links": { "self": "https://api.au1.cliniko.com/v1/attendees/1/patient_forms" } }, "sent_email_reminders_count": 0, "sent_sms_reminders_count": 0, "sms_reminder_sent": true, "telehealth_url": "http://example.com", "treatment_note_status": 10, "updated_at": "2019-08-24T14:15:22Z" }

Get attendee

Request

Path
idstring(int64)required
Query
q[]Array of strings
curl -i -X GET \
  -u <username>:<password> \
  'https://api.au1.cliniko.com/v1/attendees/{id}?q%5B%5D=string'

Responses

Successful operation

Bodyapplication/json
archived_atstring or null(date-time)
arrivedboolean or null
bookingobject
booking_ip_addressstring or null(ipv4)
Example: "10.0.0.43"
cancellation_notestring or null
cancellation_reasoninteger or null
cancellation_reason_descriptionstring or null
Enum"Feeling Better""Condition Worse""Sick""COVID-19 related""Away""Other""Work"""
cancellation_urlstring or null(uri)
cancelled_atstring or null(date-time)
created_atstring(date-time)
deleted_atstring or null(date-time)
email_reminder_sentboolean or null
idstring(int64)
invoice_statusinteger or null
Enum ValueDescription
10Open
20Paid
30Closed
40Open credit
Enum10203040
invoicesobject
linksobject
notesstring or null
online_booking_policy_acceptedboolean or null
patientobject
patient_caseobject
patient_formsobject
sent_email_reminders_countinteger or null
sent_sms_reminders_countinteger or null
sms_reminder_sentboolean or null
telehealth_urlstring or null(uri)
treatment_note_statusinteger or null
Enum ValueDescription
10Draft
90Final
Enum1090
updated_atstring(date-time)
Response
application/json
{ "archived_at": "2019-08-24T14:15:22Z", "arrived": true, "booking": { "links": { "self": "https://api.au1.cliniko.com/v1/bookings/1" } }, "booking_ip_address": "10.0.0.43", "cancellation_note": "string", "cancellation_reason": 0, "cancellation_reason_description": "Feeling Better", "cancellation_url": "http://example.com", "cancelled_at": "2019-08-24T14:15:22Z", "created_at": "2019-08-24T14:15:22Z", "deleted_at": "2019-08-24T14:15:22Z", "email_reminder_sent": true, "id": "string", "invoice_status": 10, "invoices": { "links": { "self": "https://api.au1.cliniko.com/v1/attendees/1/invoices" } }, "links": { "self": "https://api.au1.cliniko.com/v1/attendees/1" }, "notes": "string", "online_booking_policy_accepted": true, "patient": { "links": { "self": "https://api.au1.cliniko.com/v1/patients/1" } }, "patient_case": { "links": { "self": "https://api.au1.cliniko.com/v1/patient_cases/1" } }, "patient_forms": { "links": { "self": "https://api.au1.cliniko.com/v1/attendees/1/patient_forms" } }, "sent_email_reminders_count": 0, "sent_sms_reminders_count": 0, "sms_reminder_sent": true, "telehealth_url": "http://example.com", "treatment_note_status": 10, "updated_at": "2019-08-24T14:15:22Z" }

Update attendee

Request

Path
idstring(int64)required
Bodyapplication/jsonrequired
arrivedboolean or null
notesstring or null
patient_case_idstring(int64)

patient case id

Example: "1"
curl -i -X PATCH \
  -u <username>:<password> \
  'https://api.au1.cliniko.com/v1/attendees/{id}' \
  -H 'Content-Type: application/json' \
  -d '{
    "arrived": true,
    "notes": "string",
    "patient_case_id": "1"
  }'

Responses

Resource was updated

Bodyapplication/json
archived_atstring or null(date-time)
arrivedboolean or null
bookingobject
booking_ip_addressstring or null(ipv4)
Example: "10.0.0.43"
cancellation_notestring or null
cancellation_reasoninteger or null
cancellation_reason_descriptionstring or null
Enum"Feeling Better""Condition Worse""Sick""COVID-19 related""Away""Other""Work"""
cancellation_urlstring or null(uri)
cancelled_atstring or null(date-time)
created_atstring(date-time)
deleted_atstring or null(date-time)
email_reminder_sentboolean or null
idstring(int64)
invoice_statusinteger or null
Enum ValueDescription
10Open
20Paid
30Closed
40Open credit
Enum10203040
invoicesobject
linksobject
notesstring or null
online_booking_policy_acceptedboolean or null
patientobject
patient_caseobject
patient_formsobject
sent_email_reminders_countinteger or null
sent_sms_reminders_countinteger or null
sms_reminder_sentboolean or null
telehealth_urlstring or null(uri)
treatment_note_statusinteger or null
Enum ValueDescription
10Draft
90Final
Enum1090
updated_atstring(date-time)
Response
application/json
{ "archived_at": "2019-08-24T14:15:22Z", "arrived": true, "booking": { "links": { "self": "https://api.au1.cliniko.com/v1/bookings/1" } }, "booking_ip_address": "10.0.0.43", "cancellation_note": "string", "cancellation_reason": 0, "cancellation_reason_description": "Feeling Better", "cancellation_url": "http://example.com", "cancelled_at": "2019-08-24T14:15:22Z", "created_at": "2019-08-24T14:15:22Z", "deleted_at": "2019-08-24T14:15:22Z", "email_reminder_sent": true, "id": "string", "invoice_status": 10, "invoices": { "links": { "self": "https://api.au1.cliniko.com/v1/attendees/1/invoices" } }, "links": { "self": "https://api.au1.cliniko.com/v1/attendees/1" }, "notes": "string", "online_booking_policy_accepted": true, "patient": { "links": { "self": "https://api.au1.cliniko.com/v1/patients/1" } }, "patient_case": { "links": { "self": "https://api.au1.cliniko.com/v1/patient_cases/1" } }, "patient_forms": { "links": { "self": "https://api.au1.cliniko.com/v1/attendees/1/patient_forms" } }, "sent_email_reminders_count": 0, "sent_sms_reminders_count": 0, "sms_reminder_sent": true, "telehealth_url": "http://example.com", "treatment_note_status": 10, "updated_at": "2019-08-24T14:15:22Z" }

Archive attendee

Request

Path
idstring(int64)required
curl -i -X POST \
  -u <username>:<password> \
  'https://api.au1.cliniko.com/v1/attendees/{id}/archive'

Responses

Resource was archived

Cancel attendee

Request

Path
idstring(int64)required
Bodyapplication/jsonrequired
cancellation_notestring or null
cancellation_reasoninteger
Enum ValueDescription
10Feeling better
20Condition worse
30Sick
40Away
50Other
60Work
Enum102030405060
apply_to_repeatsboolean
curl -i -X PATCH \
  -u <username>:<password> \
  'https://api.au1.cliniko.com/v1/attendees/{id}/cancel' \
  -H 'Content-Type: application/json' \
  -d '{
    "cancellation_note": "string",
    "cancellation_reason": 10,
    "apply_to_repeats": true
  }'

Responses

Resource was cancelled

Archive attendeeDeprecated

Request

Path
idstring(int64)required
curl -i -X DELETE \
  -u <username>:<password> \
  'https://api.au1.cliniko.com/v1/attendees/{id}'

Responses

Resource was archived successfully

List attendees for group appointmentDeprecated

Request

Path
group_appointment_idstring(int64)required
Query
pageinteger
per_pageinteger[ 1 .. 100 ]
sortArray of strings

Comma separated search fields. See: Ordering

Example: sort=created_at:desc
q[]Array of strings
orderstringDeprecated
Enum"asc""desc"
curl -i -X GET \
  -u <username>:<password> \
  'https://api.au1.cliniko.com/v1/group_appointments/{group_appointment_id}/attendees?order=asc&page=0&per_page=1&q%5B%5D=string&sort=created_at%3Adesc'

Responses

successful operation

Bodyapplication/json
attendeesArray of objects(Attendee)
total_entriesinteger
Example: 1
linksobject
Response
application/json
{ "attendees": [ { "archived_at": "2019-08-24T14:15:22Z", "arrived": true, "booking": { "links": {} }, "booking_ip_address": "10.0.0.43", "cancellation_note": "string", "cancellation_reason": 0, "cancellation_reason_description": "Feeling Better", "cancellation_url": "http://example.com", "cancelled_at": "2019-08-24T14:15:22Z", "created_at": "2019-08-24T14:15:22Z", "deleted_at": "2019-08-24T14:15:22Z", "email_reminder_sent": true, "id": "string", "invoice_status": 10, "invoices": { "links": {} }, "links": { "self": "https://api.au1.cliniko.com/v1/attendees/1" }, "notes": "string", "online_booking_policy_accepted": true, "patient": { "links": {} }, "patient_case": { "links": {} }, "patient_forms": { "links": {} }, "sent_email_reminders_count": 0, "sent_sms_reminders_count": 0, "sms_reminder_sent": true, "telehealth_url": "http://example.com", "treatment_note_status": 10, "updated_at": "2019-08-24T14:15:22Z" } ], "total_entries": 1, "links": { "self": "https://api.au1.cliniko.com/v1/group_appointments/1/attendees?page=2", "previous": "https://api.au1.cliniko.com/v1/group_appointments/1/attendees?page=1", "next": "https://api.au1.cliniko.com/v1/group_appointments/1/attendees?page=3" } }

List attendees for individual appointmentDeprecated

Request

Path
individual_appointment_idstring(int64)required
Query
pageinteger
per_pageinteger[ 1 .. 100 ]
sortArray of strings

Comma separated search fields. See: Ordering

Example: sort=created_at:desc
q[]Array of strings
orderstringDeprecated
Enum"asc""desc"
curl -i -X GET \
  -u <username>:<password> \
  'https://api.au1.cliniko.com/v1/individual_appointments/{individual_appointment_id}/attendees?order=asc&page=0&per_page=1&q%5B%5D=string&sort=created_at%3Adesc'

Responses

successful operation

Bodyapplication/json
attendeesArray of objects(Attendee)
total_entriesinteger
Example: 1
linksobject
Response
application/json
{ "attendees": [ { "archived_at": "2019-08-24T14:15:22Z", "arrived": true, "booking": { "links": {} }, "booking_ip_address": "10.0.0.43", "cancellation_note": "string", "cancellation_reason": 0, "cancellation_reason_description": "Feeling Better", "cancellation_url": "http://example.com", "cancelled_at": "2019-08-24T14:15:22Z", "created_at": "2019-08-24T14:15:22Z", "deleted_at": "2019-08-24T14:15:22Z", "email_reminder_sent": true, "id": "string", "invoice_status": 10, "invoices": { "links": {} }, "links": { "self": "https://api.au1.cliniko.com/v1/attendees/1" }, "notes": "string", "online_booking_policy_accepted": true, "patient": { "links": {} }, "patient_case": { "links": {} }, "patient_forms": { "links": {} }, "sent_email_reminders_count": 0, "sent_sms_reminders_count": 0, "sms_reminder_sent": true, "telehealth_url": "http://example.com", "treatment_note_status": 10, "updated_at": "2019-08-24T14:15:22Z" } ], "total_entries": 1, "links": { "self": "https://api.au1.cliniko.com/v1/individual_appointments/1/attendees?page=2", "previous": "https://api.au1.cliniko.com/v1/individual_appointments/1/attendees?page=1", "next": "https://api.au1.cliniko.com/v1/individual_appointments/1/attendees?page=3" } }

List attendees for patient caseDeprecated

Request

Path
patient_case_idstring(int64)required
Query
pageinteger
per_pageinteger[ 1 .. 100 ]
sortArray of strings

Comma separated search fields. See: Ordering

Example: sort=created_at:desc
q[]Array of strings
orderstringDeprecated
Enum"asc""desc"
curl -i -X GET \
  -u <username>:<password> \
  'https://api.au1.cliniko.com/v1/patient_cases/{patient_case_id}/attendees?order=asc&page=0&per_page=1&q%5B%5D=string&sort=created_at%3Adesc'

Responses

successful operation

Bodyapplication/json
attendeesArray of objects(Attendee)
total_entriesinteger
Example: 1
linksobject
Response
application/json
{ "attendees": [ { "archived_at": "2019-08-24T14:15:22Z", "arrived": true, "booking": { "links": {} }, "booking_ip_address": "10.0.0.43", "cancellation_note": "string", "cancellation_reason": 0, "cancellation_reason_description": "Feeling Better", "cancellation_url": "http://example.com", "cancelled_at": "2019-08-24T14:15:22Z", "created_at": "2019-08-24T14:15:22Z", "deleted_at": "2019-08-24T14:15:22Z", "email_reminder_sent": true, "id": "string", "invoice_status": 10, "invoices": { "links": {} }, "links": { "self": "https://api.au1.cliniko.com/v1/attendees/1" }, "notes": "string", "online_booking_policy_accepted": true, "patient": { "links": {} }, "patient_case": { "links": {} }, "patient_forms": { "links": {} }, "sent_email_reminders_count": 0, "sent_sms_reminders_count": 0, "sms_reminder_sent": true, "telehealth_url": "http://example.com", "treatment_note_status": 10, "updated_at": "2019-08-24T14:15:22Z" } ], "total_entries": 1, "links": { "self": "https://api.au1.cliniko.com/v1/patient_cases/1/attendees?page=2", "previous": "https://api.au1.cliniko.com/v1/patient_cases/1/attendees?page=1", "next": "https://api.au1.cliniko.com/v1/patient_cases/1/attendees?page=3" } }

Availability Block

Operations

Available Time

Cliniko users can configure how available times are displayed in our online bookings module.

The API endpoints that retrieve available times will respect these settings. The settings are:

Maximum number of appointments per day segment

Day parts are morning (before Midday), afternoon (Midday to 5pm) and evening (5pm onwards).

Possible settings are: 1, 2, 3, 4, 5 or unlimited.

Minimum advance time required for online bookings

This is the minimum amount of time from now that a available time will be shown.

Possible settings are: Now, 1 Hour, 2 Hours, 4 Hours, Tomorrow or 2 Days.

How far ahead bookings are offered

This limits how far in the future available times are offered.

Possible settings are: 28 days, 84 days, 182 days or 365 days

Business to be displayed in online bookings

Setting to choose which businesses can be displayed in our online bookings module.

The API will not return available times for businesses not enabled for online bookings.

Appointment Type to be displayed in online bookings

Setting to choose which appointment types can be displayed in our online bookings module.

The API will not return available times for appointment types not enabled for online bookings.

Practitioner to be displayed in online bookings

Setting to choose which practitioners can be displayed in our online bookings module.

The API will not return available times for practitioners not enabled for online bookings.

Operations

Billable Item

Operations

Booking

Operations

Business

Businesses represent a business or location (e.g. a clinic). Each Cliniko account can have unlimited businesses.

These are typically used for each physical location if there is more than one. Most Cliniko accounts have just one business.

Operations

Communication

Operations

Concession Price

Operations

Concession Type

Operations

Contact

Operations

Daily Availability

The regularly scheduled availabilities of a practitioner at a business

Operations

Group Appointment

Operations

Individual Appointment

Operations

Invoice

Operations

Invoice Item

Operations

Medical Alert

Operations

Patient

Patients are the people that book in for appointments. There isn't much in Cliniko that doesn't revolve around patients.

When you're working with patient information, make sure you abide by the relevant regulations for security and privacy.

A couple of fields in the patient record deserve special consideration:

accepted_privacy_policy stores the patient's consent to the business's own privacy policy. Values can be null (no response), true (accepted) or false (rejected). Please consider how this may affect you storing information on this patient.

time_zone will contain a valid IANA time zone identifier if the patient's time zone has been set, or null if it hasn't. It can be set via the API, in which case it accepts IANA time zone identifiers.

Operations

Patient Attachment

Operations

Patient Case

Operations

Patient Form

HTML is supported in answers to paragraph questions. We sanitize these answers to ensure the HTML is safe and our editor can support the formatting.

Currently, the following tags are supported: p, div, br, ul, ol, li, blockquote, h1, h2, b, i, u, and a.

The angle bracket characters (<, and >) should be sent as html encodings (ex: < should be sent as &lt;).

Content inside unescaped angle brackets could be indentified as unsupported HTML and will be stripped.

Operations

Patient Form Template

Operations

Practitioner

All practitioners have an associated user account. Not all users are practitioners (e.g. receptionists wouldn't be).

You can only create appointments for practitioners (not for users).

Operations

Practitioner Reference Number

Operations

Product

Operations

Product Supplier

Operations

Public Settings

Operations

Referral Source

Referral source of a patient

Operations

Referral Source Type

Types of referrals for patients

Operations

Relationship

Operations

Service

Operations

Settings

Operations

Signature

Operations

Stock Adjustment

Operations

Tax

Operations

Treatment Note

Notes taken about a patient visit.

HTML is supported in answers to paragraph questions. We sanitize these answers to ensure the HTML is safe and our editor can support the formatting.

Currently, the following tags are supported: p, div, br, ul, ol, li, blockquote, h1, h2, b, i, u, and a.

The angle bracket characters (<, and >) should be sent as html encodings (ex: < should be sent as &lt;).

Content inside unescaped angle brackets could be indentified as unsupported HTML and will be stripped.

Operations

Treatment Note Template

Templates that are the starting point for treatment notes.

HTML is supported in answers to paragraph questions. We sanitize these answers to ensure the HTML is safe and our editor can support the formatting.

Currently, the following tags are supported: p, div, br, ul, ol, li, blockquote, h1, h2, b, i, u, and a.

The angle bracket characters (<, and >) should be sent as html encodings (ex: < should be sent as &lt;).

Content inside unescaped angle brackets could be indentified as unsupported HTML and will be stripped.

Operations

Unavailable Block

Operations

User

Operations