Provet Cloud

Provet Cloud is a cloud-based veterinary practice management system (PIMS) built by Nordhealth for animal clinics, hospitals, and referral practices. It exposes a documented REST API (base https://provetcloud.com//api/0.1/, regional domains such as us.provetcloud.com) that gives approved integration partners programmatic access to clients, patients (animals), consultations, appointments and online booking, invoicing and payments, items, and reference data, plus a webhook system with 60+ triggers for reacting to changes in a Provet Cloud installation. Access is OAuth 2.0 authorized (Client Credentials for backend services, Authorization Code with PKCE for user-facing apps); integrations are registered and approved by Provet's support team per installation. The documentation at developers.provetcloud.com is freely browsable by any customer or developer.

7 APIs 0 Features
VeterinaryPractice ManagementPIMSHealthcareNordhealthAnimal HealthAppointmentsBilling

APIs

Provet Cloud Clients API

Manage clients (the animal owners / bill payers) in a Provet Cloud installation - list and filter clients by name, organization, email, or phone, create new clients, patch clien...

Provet Cloud Patients API

Manage patients (the animals) linked to clients - list and filter by client, name, microchip, species, or modification date, create single patients or bulk-create many in one re...

Provet Cloud Appointments API

Create appointments and drive an online booking platform - book appointments against a department, reason, and supervising user, send appointment confirmations, create appointme...

Provet Cloud Consultations API

Create and manage consultations (clinical visits) - create and filter consultations, advance them through their lifecycle with update_status, mark them sent to external systems,...

Provet Cloud Billing & Invoicing API

Read invoices and invoice rows, issue full or partial refunds (credit notes), record and cancel payments against finalized invoices, and record unallocated prepayments and read ...

Provet Cloud Items & Reference Data API

Read the master item catalog (medicines, procedures, supplies, foods), departments, appointment reasons, users, custom field definitions, and code lists (species, breeds, diagno...

Provet Cloud Webhooks API

Subscribe to changes in a Provet Cloud installation. Provet Cloud POSTs an event (with the changed object's ID) to a configured URL for 60+ triggers across clients, patients, co...

Collections

Pricing Plans

Rate Limits

Provet Cloud Rate Limits

3 limits

RATE LIMITS

FinOps

Resources

🔗
DomainSecurity
DomainSecurity
🔑
Authentication
Authentication
🔑
OAuthScopes
OAuthScopes
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps
📰
Blog
Blog

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Provet Cloud REST API
  version: '0.1'
request:
  auth:
    type: bearer
    token: '{{accessToken}}'
items:
- info:
    name: Clients
    type: folder
  items:
  - info:
      name: List clients
      type: http
    http:
      method: GET
      url: https://provetcloud.com/{provet_id}/api/0.1/client/
    docs: Fetch clients with optional filters (firstname, lastname, email, archived).
  - info:
      name: Create a client
      type: http
    http:
      method: POST
      url: https://provetcloud.com/{provet_id}/api/0.1/client/
      body:
        type: json
        data: '{}'
    docs: Create a new client (animal owner / bill payer).
  - info:
      name: Update a client
      type: http
    http:
      method: PATCH
      url: https://provetcloud.com/{provet_id}/api/0.1/client/:id/
      params:
      - name: id
        value: ''
        type: path
        description: Client ID.
      body:
        type: json
        data: '{}'
    docs: Patch client fields such as email or communication preferences.
  - info:
      name: List phone numbers
      type: http
    http:
      method: GET
      url: https://provetcloud.com/{provet_id}/api/0.1/phonenumber/
    docs: List phone numbers associated with a client.
- info:
    name: Patients
    type: folder
  items:
  - info:
      name: List patients
      type: http
    http:
      method: GET
      url: https://provetcloud.com/{provet_id}/api/0.1/patient/
    docs: Fetch patients (animals) with filters (client, microchip, species, modified).
  - info:
      name: Create a patient
      type: http
    http:
      method: POST
      url: https://provetcloud.com/{provet_id}/api/0.1/patient/
      body:
        type: json
        data: '{}'
    docs: Create a single patient linked to a client.
  - info:
      name: Bulk create patients
      type: http
    http:
      method: POST
      url: https://provetcloud.com/{provet_id}/api/0.1/patient/bulk/
      body:
        type: json
        data: '[]'
    docs: Create multiple patients in one request, with partial success support.
  - info:
      name: Update a patient
      type: http
    http:
      method: PATCH
      url: https://provetcloud.com/{provet_id}/api/0.1/patient/:id/
      params:
      - name: id
        value: ''
        type: path
        description: Patient ID.
      body:
        type: json
        data: '{}'
    docs: Patch patient details (microchip, weight, deceased status).
- info:
    name: Appointments
    type: folder
  items:
  - info:
      name: Create an appointment
      type: http
    http:
      method: POST
      url: https://provetcloud.com/{provet_id}/api/0.1/appointment/
      body:
        type: json
        data: '{}'
    docs: Create an appointment against a department, reason, and supervising user.
  - info:
      name: Send appointment confirmation
      type: http
    http:
      method: POST
      url: https://provetcloud.com/{provet_id}/api/0.1/appointment/:id/send_appointment_confirmation/
      params:
      - name: id
        value: ''
        type: path
        description: Appointment ID.
    docs: Send a confirmation email/SMS for an appointment.
  - info:
      name: Create online booking client
      type: http
    http:
      method: POST
      url: https://provetcloud.com/{provet_id}/api/0.1/onlinebookingclient/
      body:
        type: json
        data: '{}'
    docs: Register a client in a self-service online booking flow.
  - info:
      name: Create online booking patient
      type: http
    http:
      method: POST
      url: https://provetcloud.com/{provet_id}/api/0.1/onlinebookingpatient/
      body:
        type: json
        data: '{}'
    docs: Register a patient in a self-service online booking flow.
- info:
    name: Consultations
    type: folder
  items:
  - info:
      name: List consultations
      type: http
    http:
      method: GET
      url: https://provetcloud.com/{provet_id}/api/0.1/consultation/
    docs: Retrieve and filter existing consultations.
  - info:
      name: Create a consultation
      type: http
    http:
      method: POST
      url: https://provetcloud.com/{provet_id}/api/0.1/consultation/
      body:
        type: json
        data: '{}'
    docs: Create a new consultation (clinical visit).
  - info:
      name: Get a consultation
      type: http
    http:
      method: GET
      url: https://provetcloud.com/{provet_id}/api/0.1/consultation/:id/
      params:
      - name: id
        value: ''
        type: path
        description: Consultation ID.
    docs: Fetch a specific consultation.
  - info:
      name: Update consultation status
      type: http
    http:
      method: POST
      url: https://provetcloud.com/{provet_id}/api/0.1/consultation/:id/update_status/
      params:
      - name: id
        value: ''
        type: path
        description: Consultation ID.
      body:
        type: json
        data: '{}'
    docs: Advance a consultation through its lifecycle states.
  - info:
      name: Add a medicine to a consultation
      type: http
    http:
      method: POST
      url: https://provetcloud.com/{provet_id}/api/0.1/consultation/:id/medicines/
      params:
      - name: id
        value: ''
        type: path
        description: Consultation ID.
      body:
        type: json
        data: '{}'
    docs: Add a medication to a consultation.
- info:
    name: Billing
    type: folder
  items:
  - info:
      name: List invoices
      type: http
    http:
      method: GET
      url: https://provetcloud.com/{provet_id}/api/0.1/invoice/
    docs: Retrieve invoices with filtering options.
  - info:
      name: Full refund an invoice
      type: http
    http:
      method: POST
      url: https://provetcloud.com/{provet_id}/api/0.1/invoice/:id/full_refund/
      params:
      - name: id
        value: ''
        type: path
        description: Invoice ID.
    docs: Generate a complete credit note for an invoice.
  - info:
      name: List invoice rows
      type: http
    http:
      method: GET
      url: https://provetcloud.com/{provet_id}/api/0.1/invoicerow/
    docs: Fetch line items for invoices.
  - info:
      name: Record an invoice payment
      type: http
    http:
      method: POST
      url: https://provetcloud.com/{provet_id}/api/0.1/invoicepayment/
      body:
        type: json
        data: '{}'
    docs: Record a payment against a finalized invoice (status 3).
  - info:
      name: Record an unallocated payment
      type: http
    http:
      method: POST
      url: https://provetcloud.com/{provet_id}/api/0.1/unallocatedpayment/
      body:
        type: json
        data: '{}'
    docs: Record funds received before invoice creation (a prepayment).
- info:
    name: Reference Data
    type: folder
  items:
  - info:
      name: List items
      type: http
    http:
      method: GET
      url: https://provetcloud.com/{provet_id}/api/0.1/item/
    docs: Retrieve the master catalog for medicines, procedures, supplies, and food.
  - info:
      name: Get a department
      type: http
    http:
      method: GET
      url: https://provetcloud.com/{provet_id}/api/0.1/department/:id/
      params:
      - name: id
        value: ''
        type: path
        description: Department ID.
    docs: Retrieve a department.
  - info:
      name: List species codes
      type: http
    http:
      method: GET
      url: https://provetcloud.com/{provet_id}/api/0.1/codelist/species/
    docs: Retrieve valid species codes for patient creation.
  - info:
      name: List breed codes
      type: http
    http:
      method: GET
      url: https://provetcloud.com/{provet_id}/api/0.1/codelist/breeds/
    docs: Retrieve valid breed codes for patient records.
  - info:
      name: List diagnosis codes
      type: http
    http:
      method: GET
      url: https://provetcloud.com/{provet_id}/api/0.1/codelist/diagnoses/
    docs: Retrieve available diagnostic codes.
- info:
    name: Webhooks
    type: folder
  items:
  - info:
      name: List webhooks (modeled)
      type: http
    http:
      method: GET
      url: https://provetcloud.com/{provet_id}/api/0.1/webhook/
    docs: Modeled webhook-management endpoint. Confirm the exact path against a live installation.
  - info:
      name: Create a webhook (modeled)
      type: http
    http:
      method: POST
      url: https://provetcloud.com/{provet_id}/api/0.1/webhook/
      body:
        type: json
        data: '{}'
    docs: 'Modeled: subscribe to a trigger. Provet Cloud POSTs the changed object''s ID to the target URL and retries up to
      10 times.'
bundled: true