POST
/
patient-enrollment
curl --request POST \
  --url https://api.develophealth.io/patient-enrollment \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "patient": {
    "first_name": "<string>",
    "last_name": "<string>",
    "date_of_birth": "2023-12-25",
    "address": {
      "street": "<string>",
      "city": "<string>",
      "state_province": "<string>",
      "zip_postal_code": "<string>",
      "country": "<string>"
    },
    "email": "[email protected]",
    "phone": "<string>",
    "insurance_details": {
      "data": {
        "group_number": "<string>",
        "payer": "<string>",
        "membership_number": "<string>",
        "rx_bin": "<string>",
        "rx_group": "<string>"
      },
      "assets": [
        {
          "name": "<string>",
          "type": "Insurance Card Front",
          "url": "<string>"
        }
      ]
    },
    "metadata": {
      "patient_id": "<string>"
    }
  },
  "programId": "<string>",
  "prescription": {
    "drug_name": "<string>",
    "dosage": "<string>",
    "directions": "<string>",
    "extra": {}
  },
  "evidence": [
    {
      "type": "Visit Note",
      "date_created": "2023-11-07T05:31:56Z",
      "content": {},
      "assets": [
        {
          "name": "<string>",
          "type": "Insurance Card Front",
          "url": "<string>"
        }
      ]
    }
  ],
  "metadata": {
    "enrollment_id": "<string>"
  }
}'

Overview

This endpoint is designed to facilitate the enrollment of patients in drug manufacturer support programs. These programs are typically aimed at providing financial assistance, educational resources, and other forms of support to help patients access and adhere to their prescribed medications. By submitting detailed patient information, including current prescriptions and relevant medical evidence, healthcare providers can enroll patients in programs that specifically cater to their therapeutic and financial needs.

How to Use

To use this endpoint, healthcare providers should submit a comprehensive enrollment request that includes:

  • Patient Information: Full details of the patient, including personal and contact information, insurance details, and any other relevant data.
  • Program ID: The identifier for the specific support program in which the patient is being enrolled.
  • Prescription Details: Information about the medication prescribed to the patient, including drug name, dosage, and administration instructions.
  • Evidence: Any relevant medical history, documentation, or other evidence that supports the patient’s need for the program.

This information helps the support program assess the patient’s eligibility and the level of assistance required.

Response

Upon submission, the endpoint will process the enrollment request and respond with confirmation of successful submission or details of any errors or additional information required. If successful, the patient’s enrollment in the support program will be initiated, and further instructions or steps will be communicated as needed.

Benefits

  • Streamlined Support Access: Simplifies the process of enrolling patients in support programs, reducing administrative burdens on healthcare providers.
  • Enhanced Patient Care: By assisting with the financial and educational aspects of medication adherence, these programs can improve patient outcomes and treatment experiences.
  • Customized Assistance: The detailed information provided in the enrollment request allows for tailored support, ensuring that patients receive the most appropriate aid based on their specific medical and financial circumstances.

This endpoint is crucial for healthcare providers aiming to enhance patient access to necessary medications through support programs, ultimately contributing to better healthcare outcomes and patient satisfaction.

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
patient
object
required
programId
string
required

Identifier for the support program. You can obtain this from the Find patient support programs endpoint

prescription
object
evidence
object[]

A collection of evidence items supporting the enrollment request.

metadata
object

Optional metadata containing internal details about the enrollment. Useful for custom tagging or referencing.