Contacts Products
{ "right": { "__typename": "ContactsProduct" }, "left": { "__typename": "ContactsProduct" } }
Contacts Prescription
File ID from uploadFile (conditionally required if doctor and patient are not set)
Prescription ID
Prescription issue date, if available
Prescription expiration date, if available
Doctor details (conditionally required if prescription file ID is not set)
Patient details (conditionally required if prescription file ID is not set)
Details about the prescribed contacts
Doctor-entered comments
{ "fileId": "Example String", "prescriptionId": "Example String", "issueDate": "Example String", "expirationDate": "Example String", "doctor": { "__typename": "Doctor" }, "patient": { "__typename": "Patient" }, "products": { "__typename": "ContactsProducts" }, "comments": "Example String" }
Contacts
{ "products": [ { "__typename": "ContactsProducts" } ], "prescription": { "__typename": "ContactsPrescription" } }
Contacts Verification Job
Contacts verification job details
Unique ID for this job
Current job status
Current job reason, if applicable
Notes entered by Doctor and/or Visibly
Contacts details
List of tags used to correlate this workflow with other systems
Last date and time this job was updated
Implements interfaces
Contacts job interface
{ "jobId": "Example String", "status": "Example String", "reason": "Example String", "notes": "Example String", "contacts": { "__typename": "Contacts" }, "tags": [ { "__typename": "Tag" } ], "updatedAt": "Example String" }
Contacts Suggestion Job
Contacts suggestion job details
Unique ID for this job
Current job status
Current job reason, if applicable
Notes entered by Doctor and/or Visibly
Contacts details
List of tags used to correlate this workflow with other systems
Last date and time this job was updated
Implements interfaces
Contacts job interface
{ "jobId": "Example String", "status": "Example String", "reason": "Example String", "notes": "Example String", "contacts": { "__typename": "Contacts" }, "tags": [ { "__typename": "Tag" } ], "updatedAt": "Example String" }
Patient
Information about the patient
Patient ID
First name
Middle name
Last name
Date of birth in ISO 8601 format, i.e., YYYY-MM-DD
Phone number
Email address
Street address #1
Street address #2
City
State
Zip code
{ "patientId": "Example String", "firstName": "Example String", "middleName": "Example String", "lastName": "Example String", "dateOfBirth": "Example String", "phoneNumber": "Example String", "email": "Example String", "address": "Example String", "address2": "Example String", "city": "Example String", "state": "Example String", "zipCode": "Example String" }