Prescriber Registration

The prescriber registration endpoint allows you to register a clinic prescriber. This endpoint uses an alternative authentication method, with a provider code (X-Provider-Code) instead of an access token. As part of governance, Quincy will conduct verification checks on the prescriber's details. Please contact us to obtain a provider code if you would like to use this endpoint.

POST/v1/clinics/register

Register a prescriber

This endpoint allows you to register a clinic prescriber. It requires details such as the prescriber's name, email, and professional information, as well as the clinic's contact details. If a clinic_source_id is provided, the prescriber will be registered under that existing clinic, otherwise a new clinic will be created.

Request

POST
/v1/clinics/register
curl -X POST https://app.quincy.health/api/v1/clinics/register \
  -H "X-Provider-Code: {provider_code}" \
  -d '{
    "first_name": "John",
    "last_name": "Doe",
    "email": "[email protected]",
    "mobile_phone": "+1234567890",
    "title": "Dr",
    "professional_body": "GMC",
    "registration_number": "123456",
    "clinic_source_id": "6112dd81a0e7417d946187fd19f8e1e1",
    "clinic_name": "Health Clinic",
    "clinic_legalname": "Health Clinic Ltd",
    "address_line1": "123 Health St",
    "address_line2": "Suite 100",
    "city": "Health City",
    "postcode": "HC1 2AB"
  }'

Response

{
  "message": "Clinic registered successfully",
  "access_token": "access-token"
}

The prescriber registration model

The prescriber registration model contains information about the prescriber and clinic, including their personal and professional details.

Properties

  • Name
    first_name
    Type
    string
    Description

    The first name of the prescriber.

  • Name
    last_name
    Type
    string
    Description

    The last name of the prescriber.

  • Name
    email
    Type
    string
    Description

    The email address of the prescriber.

  • Name
    mobile_phone
    Type
    string
    Description

    The mobile phone number of the prescriber.

  • Name
    title
    Type
    string
    Description

    The title of the prescriber (e.g., Dr, Mr, Ms).

  • Name
    professional_body
    Type
    string
    Description

    The professional body of the prescriber (e.g., GMC, GPhC).

  • Name
    registration_number
    Type
    string
    Description

    The registration number of the prescriber.

  • Name
    clinic_source_id
    Type
    string
    Description

    (Optional) The source ID for the clinic if it was created via an external system.

  • Name
    clinic_name
    Type
    string
    Description

    The name of the clinic.

  • Name
    clinic_legalname
    Type
    string
    Description

    The legal name of the clinic.

  • Name
    address_line1
    Type
    string
    Description

    The first line of the clinic's address.

  • Name
    address_line2
    Type
    string
    Description

    (Optional) The second line of the clinic's address.

  • Name
    city
    Type
    string
    Description

    The city where the clinic is located.

  • Name
    postcode
    Type
    string
    Description

    The postcode of the clinic.