Selling Partner API SDK for JavaScript
    Preparing search index...

    Information about the prescription that is used to verify a regulated product. This must be provided once per order and reflect the seller’s own records. Only approved orders can have prescriptions.

    interface PrescriptionDetail {
        clinicId: string;
        expirationDate: string;
        prescriptionId: string;
        refillsRemaining: number;
        totalRefillsAuthorized: number;
        usageInstructions: string;
        writtenQuantity: number;
    }
    Index

    Properties

    clinicId: string

    The identifier for the clinic which provided the prescription used to verify the regulated product.

    expirationDate: string

    The expiration date of the prescription used to verify the regulated product, in ISO 8601 date time format.

    prescriptionId: string

    The identifier for the prescription used to verify the regulated product.

    refillsRemaining: number

    The number of refills remaining for the prescription used to verify the regulated product. If a prescription originally had 10 total refills, this value must be 10 for the first order, 9 for the second order, and 0 for the eleventh order. If a prescription originally had no refills, this value must be 0.

    totalRefillsAuthorized: number

    The total number of refills written in the original prescription used to verify the regulated product. If a prescription originally had no refills, this value must be 0.

    usageInstructions: string

    The instructions for the prescription as provided by the approver of the regulated product.

    writtenQuantity: number

    The number of units in each fill as provided in the prescription.